{{-- Left Content Start --}}
@if(!CommonHelper::getBranchSettings($sell_detail->branch_id, 'hide_name_on_statement'))
Name |
: {{ $sell_detail->customer->name }} |
@endif
@if(CommonHelper::getBranchSettings($sell_detail->branch_id, 'show_father_name_on_statement'))
Father/Husband Name |
: {{ $sell_detail->customer->father_or_husband_name }} |
@endif
{{--
CNIC No. |
: {{ $sell_detail->customer->nid }} |
--}}
@if(!CommonHelper::getBranchSettings($sell_detail->branch_id, 'hide_mobile_number_on_statement'))
Mobile No. |
: {{ $sell_detail->customer->phone ?? '-' }} |
@endif
{{--
Type |
: {{ $sell_detail->product->layout_type->name ?? '-' }} |
--}}
@if(!CommonHelper::getBranchSettings($sell_detail->branch_id, 'hide_address_on_statement'))
Address |
: {{ $sell_detail->customer->address ?? $sell_detail->customer->mailing_address }}
|
@endif
{{--
Registration No. |
: {{ $sell_detail->registration_no }} |
--}}
|
{{-- Left Content End --}}
{{-- Middle Content Start --}}
@if(!CommonHelper::getBranchSettings($sell_detail->branch_id, 'hide_unit_on_statement'))
Unit No |
: {{ $sell_detail->product_id ?? '-' }} |
@endif
@if(!CommonHelper::getBranchSettings($sell_detail->branch_id, 'hide_tower_on_statement'))
Tower |
: {{$sell_detail->product->flat_type}}
|
@endif
@if(!CommonHelper::getBranchSettings($sell_detail->branch_id, 'hide_size_on_statement'))
Unit Size |
: {{ $sell_detail->product->flat_size }}
{{ getShortName($sell_detail->product->size_in) }} (Approx) |
@endif
|
{{-- Middle Content End --}}
{{-- Right Content Start --}}
@if(!CommonHelper::getBranchSettings($sell_detail->branch_id, 'hide_unit_price_on_statement'))
Unit Price |
:
{{ $transaction->convert_money_format($sell_detail->cost_amount)}}
|
@endif
@if(!CommonHelper::getBranchSettings($sell_detail->branch_id, 'hide_extra_charges_on_statement'))
Extra Charges |
: {{ $transaction->convert_money_format($sell_detail->product->additional_charges) }} |
@endif
@if(!CommonHelper::getBranchSettings($sell_detail->branch_id, 'hide_discount_on_statement'))
Discount |
: {{ $transaction->convert_money_format($sell_detail->discount_amount) }} |
@endif
@if(!CommonHelper::getBranchSettings($sell_detail->branch_id, 'hide_purchase_price_on_statement'))
Purchase Price |
: {{ $transaction->convert_money_format($sell_detail->net_amount) }} |
@endif
|
{{-- Right Content End --}}
{{-- Statement Details End --}}