Package Type
{{$receipt->packagetype_name}}
|
Value
{{($displayAccountParcelPrice) ? 'A/c' : $receipt->parcel_value}}
|
Weight
{{($displayAccountParcelWeight) ? 'A/c' : $receipt->weight .' '. $receipt->weight_type}}
@if(isset($receipt->number_of_box) && !$displayAccountParcelWeight)
({{($receipt->number_of_box)}} Box)
@endif
|
Charge
{{($displayAccountParcelPrice) ? 'A/c' : $receipt->value}}
|
OTHER CHARGE
{{($displayAccountParcelPrice) ? 'A/c' : $receipt->total_charge - $receipt->value}}
|
@if ($displayAccountReceiptWithGst)
CGST
{{ ($displayAccountParcelPrice) ? 'A/c' : formatTwoDecimals($receipt->cgstValue) }}
|
SGST
{{ ($displayAccountParcelPrice) ? 'A/c' : formatTwoDecimals($receipt->sgstValue) }}
|
IGST
{{ ($displayAccountParcelPrice) ? 'A/c' : formatTwoDecimals($receipt->igstValue) }}
|
@else
CGST
|
SGST
|
IGST
|
@endif
total charge
{{ ($displayAccountParcelPrice) ? 'A/c' : $receipt->finalAmount }}
|