@csrf
Air System
@php $airSystemDescriptions = [ 'Inspect engine air starter motor mounting and piping', 'Check lubricator fluid level', 'Ensure starting air dryness-drain separator and receiver as necessary' ]; @endphp @foreach($airSystemDescriptions as $index => $description) @if($index === 0) @endif @endforeach
Components/Items Description Pre Condition * Post Condition * Priority Remark Action
Air System {{ $description }}
Air Start
@php $airStartDescriptions = ['Check/reset pressure regulator if necesarry']; $airStartDetails = isset($component) ? $component->details->where('sub_component', 'Air Start') : []; @endphp @foreach($airStartDescriptions as $index => $description) @php $detail = collect($airStartDetails)->first(function ($item) use ($description) { return $item->description == $description; }); @endphp @if($index === 0) @endif @endforeach
Components/Items Description Pre Condition * Post Condition * Priority Remark Action
Air Start {{ $description }} |
Hydraulic Start
@php $hydraulicStartDescriptions = [ 'Check level of hydraulic oil, hydraulic backup tank', 'Ensure there are no leaks on any of the connection or lines on the hydraulic system', 'Test hydraulic oil pump to ensure the correct starting pressure can be obtained', 'Function test hydraulic start system', 'Check all accumulator nitrogen charge' ]; $hydraulicStartDetails = isset($component) ? $component->details->where('sub_component', 'Hydraulic Start') : []; @endphp @foreach($hydraulicStartDescriptions as $index => $description) @php $detail = collect($hydraulicStartDetails)->first(function ($item) use ($description) { return $item->description == $description; }); @endphp @if($index === 0) @endif @endforeach
Components/Items Description Pre Condition * Post Condition * Priority Remark Action
Hydraulic Start {{ $description }} |