@extends('layout.app')
@section('title', 'Freight Entry 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 |
Bilty/GR No. |
Vehicle No. |
Consignor/Transporter |
Consignee |
From |
To |
Weight |
Amount |
Freight Paid By |
Action |
| Total Weight: |
|
Total Amount: |
|
|
@endsection
@push('footer_script')
@endpush