@if(isset($getSoftCopyList))
@php
$pagecount = 0;
@endphp
@foreach($getSoftCopyList as $softcopy)
@php
$pagecount++;
@endphp
@if($pagecount != 1)
@endif
|
@php
$path = public_path('uploads/logo/'.$company->company_logo);
$type = pathinfo($path, PATHINFO_EXTENSION);
$data = file_get_contents($path);
$logo = 'data:image/' . $type . ';base64,' . base64_encode($data);
@endphp
|
@php
$path = public_path('uploads/salespresentersoftcopy/'.$softcopy->salespresenterssoftcopy->image);
$type = pathinfo($path, PATHINFO_EXTENSION);
$data = file_get_contents($path);
$softcopy_image = 'data:image/' . $type . ';base64,' . base64_encode($data);
@endphp
@if(isset($watermark) && $watermark==1)
{{env('WATERMARK_TEXT')}}
@endif
@endforeach
@endif
@include('frontend.calculators.suggested.pdf')