@if(app('company')['tax_type'] == 'gst')
@endif
@if(app('company')['is_enable_secondary_currency'])
@endif
{{ __('app.action') }} |
{{ __('item.item') }} |
{{ __('item.serial') }} |
{{ __('item.batch_no') }} |
{{ __('item.mfg_date') }} |
{{ __('item.exp_date') }} |
{{ __('item.model_no') }} |
{{ __('item.mrp') }} |
{{ __('item.color') }} |
{{ __('item.size') }} |
{{ __('app.qty') }} |
{{ __('unit.unit') }} |
{{ __('app.price_per_unit') }} |
{{ __('app.discount') }} |
{{ __('tax.tax') }} |
{{ __('app.total') }} |
No items are added yet!!
|
0
|
|
0
|
@if(app('company')['is_enable_secondary_currency'])
@endif
@php
$total = 0;
@endphp
@forelse ($paymentHistory as $payment)
@php
$total+=$payment['amount'];
@endphp
@empty
@endforelse
{{ __('payment.transaction_date') }} |
{{ __('payment.receipt_no') }} |
{{ __('payment.payment_type') }} |
{{ __('payment.amount') }} |
{{ __('app.action') }} |
{{ $payment['transaction_date'] }} |
{{ $payment['reference_no'] }} |
{{ $payment['type'] }} |
{{ $formatNumber->formatWithPrecision($payment['amount']) }} |
|
{{ __('payment.no_payment_history_found') }}
|
{{ __('app.total') }} |
{{ $formatNumber->formatWithPrecision($total) }} |
|