@extends('layout.app')
@section('title', 'Trip Sheet List')
@push('header_script')
@endpush
@section('content')
{!! Form::select('vehicle_id', ['' => '-- Select Vehicle --'] + $vehicles, null, [
'class' => 'form-control select2',
'id' => 'vehicle_id',
]) !!}
{!! Form::select('status', ['' => '-- All --', 'Draft' => 'Draft', 'In Progress' => 'In Progress', 'Completed' => 'Completed'], null, [
'class' => 'form-control select2',
'id' => 'status',
]) !!}
{{-- Summary Cards --}}
Total Freight Income
₹ 0.00
{{-- Table --}}
| # |
Trip No. |
LR No. |
Date |
Vehicle No |
Driver |
Route |
Freight (₹) |
Expense (₹) |
Profit/Loss (₹) |
Status |
Action |
@endsection
@push('footer_script')
@endpush