{{-- Statement Box Start --}}
@php $fixed_amount= $sell_detail->product->rate_per_size_unofficial * $sell_detail->product->flat_size; $net_amount = $sell_detail->ScheduleReceivableWithoutDiscount->sum('unofficial_payable_amount'); @endphp @if($show_discount && request()->get('status') == '0') @foreach ($discounts as $discount) @php $sell_cost_amount = $sell_detail->cost_amount; $discount_unofficial = $discount->unofficial_payable_amount; $is_percentage = ($discount->fixed_or_percentage_discount == 0); if($is_percentage){ $discount_unofficial = ($sell_cost_amount*$discount->unofficial_payable_amount)/100; } $discount_unofficial = ceil($discount_unofficial); @endphp @endforeach @endif
Property Size Rate Per Size Un-Official Standard Price Total Un-Official
{{ $sell_detail->product->flat_size }} {{ getShortName($sell_detail->product->size_in) }} {{ $sell_detail->product->rate_per_size_unofficial }} {{ getShortName($sell_detail->product->size_in) }} {{ $transaction->convert_money_format($fixed_amount) }} {{ $transaction->convert_money_format($fixed_amount) }}
Discount Amount ({{ $discount->description }}) {{ $transaction->convert_money_format($discount_unofficial) }}
Total Net Amount {{$transaction->systemSettingCurrency()}} {{ $transaction->convert_money_format($net_amount ) }}
{{-- Statement Box End --}}