Name: {{$bill->name}}
|
GTS Number:
|
{{@$branch['gstno']}}
|
{{@$bill->address1.' '.@$bill->address2.' '.@$bill->city}}
|
Pan no:
|
{{@$branch['pancard']}}
|
|
Bill No:
|
{{$bill->billno}}
|
|
Bill Date:
|
{{date("d/m/Y", strtotime($bill->created_at))}}
|
A/c GST Number: {{@$bill->gstno}}
|
Bill Duration:
|
{{strtoupper(date("d/m/Y", strtotime($bill->start_date)))}} To {{strtoupper(date("d/m/Y", strtotime($bill->end_last)))}}
|
|
Date |
Receiver |
Destination |
Cons. No. |
Remark |
Weight |
Amout |
@if(count($all_parcels) > 0)
@php
$total_booking_amount = 0;
@endphp
@foreach($all_parcels as $parcels)
{{date("d/m/y", strtotime(@$parcels->date))}} |
{{@$parcels->receiver_name}} |
{{@$parcels->city_name}} |
{{@$parcels->consignment_no}} |
{{@$parcels->remakrs}} |
{{@$parcels->weight}} |
{{Laracore::showPrice(@$parcels->net_amt)}} |
@php
$total_booking_amount = $total_booking_amount+ @$parcels->net_amt;
@endphp
@endforeach
|
Gross Amount: |
|
{{Laracore::showPrice($total_booking_amount)}} |
@endif
Fuel Surcharge: |
{{$bill->fchpercent}}% |
{{Laracore::showPrice(($bill->amount * $bill->fchpercent)/100)}} |
Net Taxable Amount: |
|
{{Laracore::showPrice($totAmount)}} |
SGST / UT.GST Tax: |
{{$bill->sgstpercent}}% |
{{Laracore::showPrice(($totAmount * $bill->sgstpercent)/100)}} |
CGST Tax: |
{{$bill->cgstpercent}}% |
{{Laracore::showPrice(($totAmount * $bill->cgstpercent)/100)}} |
@if($bill->igstpercent > 0)
IGST Tax: |
{{$bill->igstpercent}}% |
{{Laracore::showPrice(($totAmount * $bill->igstpercent)/100)}} |
@endif
@if($roundValue != '0' && $roundValue < 0.50)
Round Of: |
|
{{Laracore::showPrice($roundValue)}} |
@endif
|
Bill Amount: |
{{$roundValue < 0.50 ? Laracore::showPrice($ceilAmount) : Laracore::showPrice($floorAmount)}} |
|