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