@extends('layout.app')
@section('title', 'Freight Commission')
@push('header_script')
@endpush
@section('content')
{!! Form::select('vehicle_id', ['' => '--Select--'] + $vehicle, null, [
'class' => 'form-control select2',
'id' => 'vehicle_id',
]) !!}
{!! Form::select('party_id', ['' => '--Select--'] + $party, null, [
'class' => 'form-control select2',
'id' => 'party_id',
]) !!}
| S.no |
GR No |
Date |
Truck No |
Party Name |
From |
To |
Freight Amount |
Commission % |
Commission Amount |
Amount After Commission |
Status |
Action |
|
|
|
|
|
|
Total: |
|
|
|
|
|
|
@endsection
@push('footer_script')
@endpush