@extends('layouts.main_without_top_button') @section('title') VEHICLE HANDOVER CHECKLIST @stop @section('navigation') @stop @section('contentinner')
@foreach($vehicle_handover_checklist->items as $key => $item) @endforeach
S/N ITEM CONDITION QUANTITY COMMENT
{{ ++$key }} {{ isset($item->masterInspectionChecklist->checklistable->name) ? $item->masterInspectionChecklist->checklistable->name : '' }} {{ $item->result }} {{ $item->quantity->quantity >0 ?: ''}} {{ $item->comment }}
@foreach($vehicle_handover_checklist->participants as $key => $participant) @endforeach
S/N Date Name Position
{{ ++$key }} {{ $participant->date }} {{ $participant->employee->full_name }} {{ $participant->position }}
@stop