|
TAX INVOICE
|
Name: {{$bill->name}}
{{$bill->address1}}
{{$bill->address2}}
{{$bill->city}}
A/c GST Number : {{@$bill->gstno}}
|
Bill No:
{{$bill->billno}}
Bill Date:
{{ date("d/m/Y", strtotime($bill->created_at)) }}
Bill Period:
{{date("d/m/Y", strtotime($bill->start_date))}} To {{date("d/m/Y", strtotime($bill->end_last))}}
|
|
|
Name: {{$bill->name}}
|
Bill Period:
{{date("d/m/Y", strtotime($bill->start_date))}} To {{date("d/m/Y", strtotime($bill->end_last))}}
|
| Sr. |
AWB No. |
Date |
Receiver |
Destination |
Pcs |
Weight |
Amount |
@php
$total_weight = $total_number_of_box = $total_net = 0;
@endphp
@php
$srno = 1;
@endphp
@foreach($all_parcels as $parcel)
@php
$net_amount = $parcel->net_amt;
$fuel_ch = ($net_amount * $bill->fchpercent) / 100;
$fuel_with_net_amount = $net_amount + $fuel_ch;
$total_number_of_box += $parcel->number_of_box;
$total_weight += $parcel->weight;
$total_net += $parcel->net_amt;
@endphp
| {{$srno}} |
{{@$parcel->consignment_no}} |
{{date("d/m/Y", strtotime(@$parcel->date))}} |
{{@$parcel->receiver_name}} |
{{@$parcel->city_name}} |
{{@$parcel->number_of_box}} |
{{@$parcel->weight}} {{strtoupper(@$parcel->weight_type)}} |
{{Laracore::showPrice($parcel->net_amt)}} |
@php
$srno++;
@endphp
@endforeach
| Total |
{{ $total_number_of_box }} |
{{ $total_weight }} |
{{Laracore::showPrice($total_net)}} |
|
|
|
SAC Code: {{@$branch['sac_code']}} -- Type Of Service: Courier Services
Remark :
PLEASE MAKE PAYMENT IN FAVOUR OF
{{@$branch['name']}}
|
| GROSS AMOUNT: |
{{Laracore::showPrice($bill->amount)}}
|
@if($value == 'Positive')
| DISCOUNT: |
- {{Laracore::showPrice($parcels[0]->total_amount - $bill->amount)}}
|
@endif
| F.Ch. : {{$bill->fchpercent}}%
|
{{Laracore::showPrice(($bill->amount * $bill->fchpercent)/100)}}
|
@if($roundValue > 0 && $roundValue <= 0.50)
| Round.Off[+/-]
|
{{Laracore::showPrice($roundValue)}} |
@endif
|
Bill
Amount : |
{{ Laracore::showPrice($finalGrandTotal) }}
|
|
|
|
Rupees :
{{ getIndianCurrency($finalGrandTotal) }}
|
|
All request for correction must be made in writing within 10 days of
invoice date. No correction will be made after 10 days of invoice
date.
|
@if($digital_signature == 1)
Digitally signed by {{strtoupper(@$branch['name'])}}
Date: {{date("d/m/Y", strtotime($bill->created_at))}} Location: {{@$branch['city']}}
@elseif($digital_signature == 2 && $branch['stamp'] != '')
For, {{@$branch['name']}}
@else
For, {{@$branch['name']}}
Autho / Sign.
@endif
|
|
|
@if($branch['bill_terms_and_conditions'] != '')
PLEASE BE NOTED:
@php
$termsAndConditionsArr = explode("\n", str_replace("\r", "", @$branch['bill_terms_and_conditions']));
@endphp
@foreach($termsAndConditionsArr as $termsAndConditions)
{{$termsAndConditions}}
@endforeach
@endif
|