@extends('layout.app')
@section('title', 'Freight Submitted Bill List')
@push('header_script')
@endpush
@section('content')
{!! Form::select('vehicle_id', ['' => '--Select--'] + $vehicle, old('vehicle_id'), [
'class' => 'form-control select2',
'id' => 'vehicle_id',
'required',
]) !!}
{!! Form::select('party_id', ['' => '--Select--'] + $party, old('party_id'), [
'class' => 'form-control select2',
'id' => 'party_id',
'required',
]) !!}
| S.no. |
Date |
Invoice No. |
Party Name |
Amount |
Status |
Action |
| Total: |
|
|
|
@endsection
@push('footer_script')
@endpush