@include('pdfs.service-reports.partials.header', [
'report' => $report,
'title' => 'Fire Suppression System Report',
])
{{-- TOP BAND --}}
|
Account
|
Service / Equipment
| Service Date |
{{ $reportDate }} |
| Start Time |
{{ $startTime }} |
| End Time |
{{ $endTime }} |
| Total Hours |
{{ $totalHours }} |
| Technician |
{{ $technician }} |
| System Type |
{{ $systemType }} |
| Manufacturer |
{{ $manufacturer }} |
| Model |
{{ $model }} |
| Serial |
{{ $serial }} |
|
{{-- TWO COLUMN BODY --}}
|
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
|
System / Service Details
| Cylinder Pressure |
{{ $cylinderPressure }} |
| Agent Type |
{{ $agentType }} |
| Last Inspection Date |
{{ $lastInspectionDate }} |
| Deficiencies Found |
{{ $deficienciesFound }} |
| Repairs Made |
{{ $repairsMade }} |
Mark checklist items Pass / Fail / N/A. Use Repaired only where corrective action was completed during service.
|
{{-- BOTTOM STRIP --}}
@include('pdfs.service-reports.partials.footer')
@include('pdfs.service-reports.partials.header', [
'report' => $report,
'title' => 'Fire Suppression System Report',
])
Additional Notes
{{ $additionalNotes !== '' ? $additionalNotes : '—' }}
@include('pdfs.service-reports.partials.footer')