@extends('layout.app')
@section('title', 'Vehicle Tool List')
@push('header_script')
@endpush
@section('content')
{{-- Filters --}}
{!! Form::select('vehicle_id', ['' => '-- Select Vehicle --'] + $vehicles, null, [
'class' => 'form-control select2',
'id' => 'vehicle_id',
]) !!}
{!! Form::select('employee_id', ['' => '-- Select Driver --'] + $drivers, null, [
'class' => 'form-control select2',
'id' => 'employee_id',
]) !!}
{{-- Table --}}
| # |
Date |
Vehicle No |
Driver |
KM |
Send By |
Action |
@endsection
@push('footer_script')
@endpush