@include('pdfs.service-reports.partials.header', [
'report' => $report,
'title' => 'Grease Interceptor Service Report',
])
|
Account
| Name |
{{ $accountDisplay }} |
| Contact |
{{ $contact }} |
| Owner / Authorized Agent |
{{ $ownerAuthorizedAgentDisplay }} |
| Technician(s) |
{{ $technician }} |
| Address Line 1 |
{{ $addressLine1 }} |
| Address Line 2 |
{{ $addressLine2 }} |
| City / Prov / PC |
{{ $cityProvPostal }} |
| Phone |
{{ $phone }} |
| Mobile Phone |
{{ $mobilePhone }} |
|
Service
| Service Date |
{{ $reportDate }} |
| Start Time |
{{ $startTime }} |
| End Time |
{{ $endTime }} |
| Total Hours |
{{ $totalHours }} |
| Service Interval |
{{ $serviceInterval }} |
| Inspection |
{{ $inspection }} |
| Cleaned |
{{ $cleaned }} |
| Return Visit |
{{ $returnVisitDisplay }} |
|
Service Details
| Manufacturer |
{{ $manufacturer }} |
Model |
{{ $model }} |
| Tank Size |
{{ $tankSize }} |
Location |
{{ $location }} |
| Solids % |
{{ $solidsPercent }} |
Grease % |
{{ $greasePercent }} |
| Liquid % |
{{ $liquidPercent }} |
Total Liquid Collected |
{{ $totalLiquidCollected }} |
Inspection Checklist
| Item |
Pass |
Fail |
N/A |
Repaired |
@foreach($rows as $row)
| {{ $row['label'] }} |
{{ $statusMark($row['answer'], 'pass') }} |
{{ $statusMark($row['answer'], 'fail') }} |
{{ $statusMark($row['answer'], 'na') }} |
{{ !empty($row['repaired']) ? 'X' : '' }} |
@endforeach
@include('pdfs.service-reports.partials.footer')
@include('pdfs.service-reports.partials.header', [
'report' => $report,
'title' => 'Grease Interceptor Service Report',
])
Additional Notes
{{ $additionalNotes !== '' ? $additionalNotes : '—' }}
@include('pdfs.service-reports.partials.footer')