@include('pdfs.service-reports.partials.header', [
'report' => $report,
'title' => 'Kitchen Ventilation System Report',
])
|
Account
| Name |
{{ $accountDisplay }} |
| Contact |
{{ $contact }} |
| Technician(s) |
{{ $technician }} |
| Address Line 1 |
{{ $addressLine1 }} |
| Address Line 2 |
{{ $addressLine2 }} |
| City / Prov / PC |
{{ $cityProvPostal }} |
| Phone |
{{ $phone }} |
| Mobile Phone |
{{ $mobilePhone }} |
|
Service / Equipment
| Service Date |
{{ $reportDate }} |
| Start Time |
{{ $startTime }} |
| End Time |
{{ $endTime }} |
| Total Hours |
{{ $totalHours }} |
| Return Visit |
{{ $returnVisitDisplay }} |
| Manufacturer |
{{ $canopyManufacturer }} |
| Model No |
{{ $modelNo }} |
| Serial No |
{{ $serialNo }} |
| Fuel |
{{ $fuelDisplay }} |
| Fuel (Other) |
{{ $fuelOther }} |
| Cooking Equip |
{{ $cookingEquipmentDisplay }} |
| Equip (Other) |
{{ $cookingEquipmentOther }} |
| Cooking Volume |
{{ $cookingVolume }} |
|
|
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
|
Filters Replaced
| Pleat Filters | {{ $pleat['fq'] ?? 'FQ' }} |
| Full Size |
{!! $checkbox(!empty($pleat['full_size_yes'])) !!}Yes
{!! $checkbox(!empty($pleat['full_size_no'])) !!}No
Qty {{ !empty($pleat['full_size_qty']) ? $pleat['full_size_qty'] : '—' }}
|
| Half Size |
{!! $checkbox(!empty($pleat['half_size_yes'])) !!}Yes
{!! $checkbox(!empty($pleat['half_size_no'])) !!}No
Qty {{ !empty($pleat['half_size_qty']) ? $pleat['half_size_qty'] : '—' }}
|
| Depth | {{ !empty($pleat['depth']) ? $pleat['depth'] : '—' }} |
| Hepa (Bag) Filters | {{ $hepa['fq'] ?? 'FQ' }} |
| Full Size |
{!! $checkbox(!empty($hepa['full_size_yes'])) !!}Yes
{!! $checkbox(!empty($hepa['full_size_no'])) !!}No
Qty {{ !empty($hepa['full_size_qty']) ? $hepa['full_size_qty'] : '—' }}
|
| Half Size |
{!! $checkbox(!empty($hepa['half_size_yes'])) !!}Yes
{!! $checkbox(!empty($hepa['half_size_no'])) !!}No
Qty {{ !empty($hepa['half_size_qty']) ? $hepa['half_size_qty'] : '—' }}
|
| Length | {{ !empty($hepa['length']) ? $hepa['length'] : '—' }} |
| Final Stage Filters | {{ $finalStage['fq'] ?? 'FQ' }} |
| Full Size |
{!! $checkbox(!empty($finalStage['full_size_yes'])) !!}Yes
{!! $checkbox(!empty($finalStage['full_size_no'])) !!}No
Qty {{ !empty($finalStage['full_size_qty']) ? $finalStage['full_size_qty'] : '—' }}
|
| Half Size |
{!! $checkbox(!empty($finalStage['half_size_yes'])) !!}Yes
{!! $checkbox(!empty($finalStage['half_size_no'])) !!}No
Qty {{ !empty($finalStage['half_size_qty']) ? $finalStage['half_size_qty'] : '—' }}
|
| Other Filters | {{ $otherFilters['fq'] ?? 'FQ' }} |
| Size | {{ !empty($otherFilters['size_1']) ? $otherFilters['size_1'] : '—' }} |
| Qty | {{ !empty($otherFilters['qty_1']) ? $otherFilters['qty_1'] : '—' }} |
| Size | {{ !empty($otherFilters['size_2']) ? $otherFilters['size_2'] : '—' }} |
| Qty | {{ !empty($otherFilters['qty_2']) ? $otherFilters['qty_2'] : '—' }} |
| Exhaust Fan Belt Replaced |
{!! $checkbox(!empty($belt['yes'])) !!}Yes
{!! $checkbox(!empty($belt['no'])) !!}No
|
| Belt size |
{{ !empty($belt['belt_size']) ? $belt['belt_size'] : '—' }} |
| Leaks Found in Duct Work |
{{ $leaksFoundDisplay }} |
| Leak Location |
{{ $leakLocationDisplay }} |
|
PCU / Ecologizer / Ultra Violet Exhaust System
| Item |
Pass |
Fail |
N/A |
Repaired |
@forelse($uvSystemRows as $row)
| {{ $row['label'] }} |
{{ $statusMark($row['answer'], 'pass') }} |
{{ $statusMark($row['answer'], 'fail') }} |
{{ $statusMark($row['answer'], 'na') }} |
{{ !empty($row['repaired']) ? 'X' : '' }} |
@empty
| — |
|
|
|
|
@endforelse
| UV (Ultra Violet) Lamps Cleaned or Replaced |
{{ $uvLampsActionDisplay }} Qty {{ $uvLampsQty }} |
| UV (Ultra Violet) Hours of Service Recorded |
{{ $uvHoursRecorded }} |
@include('pdfs.service-reports.partials.footer')
@include('pdfs.service-reports.partials.header', [
'report' => $report,
'title' => 'Kitchen Ventilation System Report',
])
Additional Notes
{{ $additionalNotes !== '' ? $additionalNotes : '—' }}
@include('pdfs.service-reports.partials.footer')