text/x-generic payment_details.blade.php ( HTML document, ASCII text )
| @lang('lang_v1.payment_method') | @lang('sale.sale') | @lang('lang_v1.expense') |
|---|---|---|
| @lang('cash_register.cash_in_hand'): | {{ $register_details->cash_in_hand }} | -- |
| @lang('cash_register.cash_payment'): | {{ $register_details->total_cash }} | {{ $register_details->total_cash_expense }} |
| @lang('cash_register.checque_payment'): | {{ $register_details->total_cheque }} | {{ $register_details->total_cheque_expense }} |
| @lang('cash_register.card_payment'): | {{ $register_details->total_card }} | {{ $register_details->total_card_expense }} |
| @lang('cash_register.bank_transfer'): | {{ $register_details->total_bank_transfer }} | {{ $register_details->total_bank_transfer_expense }} |
| @lang('lang_v1.advance_payment'): | {{ $register_details->total_advance }} | {{ $register_details->total_advance_expense }} |
| {{$payment_types['custom_pay_1']}}: | {{ $register_details->total_custom_pay_1 }} | {{ $register_details->total_custom_pay_1_expense }} |
| {{$payment_types['custom_pay_2']}}: | {{ $register_details->total_custom_pay_2 }} | {{ $register_details->total_custom_pay_2_expense }} |
| {{$payment_types['custom_pay_3']}}: | {{ $register_details->total_custom_pay_3 }} | {{ $register_details->total_custom_pay_3_expense }} |
| {{$payment_types['custom_pay_4']}}: | {{ $register_details->total_custom_pay_4 }} | {{ $register_details->total_custom_pay_4_expense }} |
| {{$payment_types['custom_pay_5']}}: | {{ $register_details->total_custom_pay_5 }} | {{ $register_details->total_custom_pay_5_expense }} |
| {{$payment_types['custom_pay_6']}}: | {{ $register_details->total_custom_pay_6 }} | {{ $register_details->total_custom_pay_6_expense }} |
| {{$payment_types['custom_pay_7']}}: | {{ $register_details->total_custom_pay_7 }} | {{ $register_details->total_custom_pay_7_expense }} |
| {{$payment_types['custom_pay_8']}}: | {{ $register_details->total_custom_pay_8 }} | {{ $register_details->total_custom_pay_8_expense }} |
| {{$payment_types['custom_pay_9']}}: | {{ $register_details->total_custom_pay_9 }} | {{ $register_details->total_custom_pay_9_expense }} |
| {{$payment_types['custom_pay_10']}}: | {{ $register_details->total_custom_pay_10 }} | {{ $register_details->total_custom_pay_10_expense }} |
| {{$payment_types['custom_pay_11']}}: | {{ $register_details->total_custom_pay_11 }} | {{ $register_details->total_custom_pay_11_expense }} |
| {{$payment_types['custom_pay_12']}}: | {{ $register_details->total_custom_pay_12 }} | {{ $register_details->total_custom_pay_12_expense }} |
| {{$payment_types['custom_pay_13']}}: | {{ $register_details->total_custom_pay_13 }} | {{ $register_details->total_custom_pay_13_expense }} |
| {{$payment_types['custom_pay_14']}}: | {{ $register_details->total_custom_pay_14 }} | {{ $register_details->total_custom_pay_14_expense }} |
| {{$payment_types['custom_pay_15']}}: | {{ $register_details->total_custom_pay_15 }} | {{ $register_details->total_custom_pay_15_expense }} |
| {{$payment_types['custom_pay_16']}}: | {{ $register_details->total_custom_pay_16 }} | {{ $register_details->total_custom_pay_16_expense }} |
| {{$payment_types['custom_pay_17']}}: | {{ $register_details->total_custom_pay_17 }} | {{ $register_details->total_custom_pay_17_expense }} |
| {{$payment_types['custom_pay_18']}}: | {{ $register_details->total_custom_pay_18 }} | {{ $register_details->total_custom_pay_18_expense }} |
| {{$payment_types['custom_pay_19']}}: | {{ $register_details->total_custom_pay_19 }} | {{ $register_details->total_custom_pay_19_expense }} |
| {{$payment_types['custom_pay_20']}}: | {{ $register_details->total_custom_pay_20 }} | {{ $register_details->total_custom_pay_20_expense }} |
| @lang('cash_register.other_payments'): | {{ $register_details->total_other }} | {{ $register_details->total_other_expense }} |
| @lang('cash_register.total_sales'): | {{ $register_details->total_sale }} |
| @lang('cash_register.total_refund') |
{{ $register_details->total_refund }} @if($register_details->total_cash_refund != 0) Cash: {{ $register_details->total_cash_refund }} @endif @if($register_details->total_cheque_refund != 0) Cheque: {{ $register_details->total_cheque_refund }} @endif @if($register_details->total_card_refund != 0) Card: {{ $register_details->total_card_refund }} @endif @if($register_details->total_bank_transfer_refund != 0) Bank Transfer: {{ $register_details->total_bank_transfer_refund }} @endif @if(array_key_exists('custom_pay_1', $payment_types) && $register_details->total_custom_pay_1_refund != 0) {{$payment_types['custom_pay_1']}}: {{ $register_details->total_custom_pay_1_refund }} @endif @if(array_key_exists('custom_pay_2', $payment_types) && $register_details->total_custom_pay_2_refund != 0) {{$payment_types['custom_pay_2']}}: {{ $register_details->total_custom_pay_2_refund }} @endif @if(array_key_exists('custom_pay_3', $payment_types) && $register_details->total_custom_pay_3_refund != 0) {{$payment_types['custom_pay_3']}}: {{ $register_details->total_custom_pay_3_refund }} @endif @if($register_details->total_other_refund != 0) Other: {{ $register_details->total_other_refund }} @endif |
|---|---|
| @lang('lang_v1.total_payment') | {{ $register_details->cash_in_hand + $register_details->total_cash - $register_details->total_cash_refund }} |
| @lang('lang_v1.credit_sales'): | {{ $details['transaction_details']->total_sales - $register_details->total_sale }} |
| @lang('cash_register.total_sales'): | {{ $details['transaction_details']->total_sales }} |
| @lang('report.total_expense'): | {{ $register_details->total_expense }} |