@if(count($all_parcels) > 0)
Name of Consignee
|
Destination
|
Remarks
|
Ref. No
|
Consignment No
|
Type
|
Weight
|
Charges
|
@php
$previousDate = ''; $skipDate = false;
@endphp
@foreach($all_parcels as $key => $parcels)
@php
$checkDate = strtotime(@$parcels->date);
if ($previousDate != '' && $previousDate == $checkDate) {
$skipDate = true;
} else {
$skipDate = false;
$previousDate = $checkDate;
}
@endphp
@if($skipDate == false)
Booking Date : {{date("d-M-Y", strtotime(@$parcels->date))}} |
@endif
{{@$parcels->receiver_name}} |
{{@$parcels->city_name}} |
{{@$parcels->remakrs}} |
|
{{@$parcels->consignment_no}} |
{{@$parcels->dp_name}} |
{{@$parcels->weight}} {{strtoupper(@$parcels->weight_type)}}
@if($parcels->number_of_box != null)
({{$parcels->number_of_box}} Box)
@endif
|
{{Laracore::showPrice(@$parcels->net_amt)}} |
@endforeach
|
@endif
|
bank details
|
Bank Name |
{{@$branch['bank_address']}} |
Account No |
{{@$branch['bank_acno']}} |
IFSC Code |
{{@$branch['ifsc_code']}} |
MICRCode |
{{@$branch['micr_code']}} |
@if(isset($branch['msme_no']) && $branch['msme_no'] != '')
MSME No |
{{$branch['msme_no']}} |
@endif
|
Total Consignments : {{count($all_parcels)}}
Abbreviations
PA : Parcel By Air
ES : Express Service
PC : Parcel By Surface
D : Document
|
Gross Total: |
{{Laracore::showPrice($bill->amount)}} |
@if($value == 'Positive')
Discount |
- {{ Laracore::showPrice($totalAmount - $bill->amount) }} |
@endif
Fuel Charges: |
{{Laracore::showPrice(($bill->amount * $bill->fchpercent)/100)}} |
Total Taxable Value |
{{Laracore::showPrice($totAmount)}} |
CGST: {{$bill->cgstpercent}}% |
{{Laracore::showPrice(($totAmount * $bill->cgstpercent)/100)}} |
SGST : {{$bill->sgstpercent}}% |
{{Laracore::showPrice(($totAmount * $bill->sgstpercent)/100)}} |
@if($bill->igstpercent > 0)
IGST: {{$bill->igstpercent}}% |
{{Laracore::showPrice(($totAmount * $bill->igstpercent)/100)}} |
@endif
|
Amount In Words : {{ getIndianCurrency($finalGrandTotal) }}. |
Net Amount:
{{ Laracore::showPrice($finalGrandTotal) }}
|
|
Please Make Payments in favor of {{@$branch['name']}}
@if($digital_signature != 1)
FOR, {{@$branch['name']}}
@endif
|
@if($digital_signature == 1)
@if(@$branch['payment_qr_code'])
}}/{{@$branch['payment_qr_code']}})
@endif
Digitally signed by {{strtoupper(@$branch['name'])}}
Date:{{date("d/m/Y", strtotime($bill->created_at))}} Location:{{@$branch['city']}}
|
@elseif($digital_signature == 2 && $branch['stamp'] != '')
@if(@$branch['payment_qr_code'])
}}/{{@$branch['payment_qr_code']}})
@endif
|
@else
@if(@$branch['payment_qr_code'])
}}/{{@$branch['payment_qr_code']}})
@endif
|
@endif
@if($branch['bill_terms_and_conditions'] != '')
|
Terms and Conditions
|
@php
$termsAndConditionsArr = explode("\n", str_replace("\r", "", @$branch['bill_terms_and_conditions']));
@endphp
@foreach($termsAndConditionsArr as $termsAndConditions)
- {{$termsAndConditions}}
@endforeach
|
@endif