@if(app('company')['mobile'] || app('company')['email'])
{{ app('company')['mobile'] ? 'M: '. app('company')['mobile'] : ''}}{{ app('company')['email'] ? ', Mail: '.app('company')['email'] : '' }}
@endif
@if(app('company')['tax_number']!= '' && app('company')['tax_type'] != 'no-tax')
{{ app('company')['tax_type'] == 'gst' ? 'GST:' : __('tax.tax') . ':' }} {{ app('company')['tax_number'] }}
@endif
# | {{ __('app.description') }} | {{ __('app.price_per_unit') }} | {{ __('app.qty') }} | {{ __('app.total') }} |
---|---|---|---|---|
{{ $i++ }} |
{{ $transaction->item->name }}
{{ $transaction->description }}
{{-- Show Brand Name --}}
@include('print.common.brand-details', ['model' => $transaction])
@if ($transaction->itemSerialTransaction->count() > 0)
{{ $transaction->itemSerialTransaction->pluck('itemSerialMaster.serial_code')->implode(',') }} @endif @if($transaction->batch) {{ __('item.batch') }} {{ $transaction->batch->itemBatchMaster->batch_no }} @if($transaction->batch->itemBatchMaster->exp_date) ,{{ __('item.exp') }} {{ $formatDate->toUserDateFormat($transaction->batch->itemBatchMaster->exp_date) }} @endif @endif |
{{ $formatNumber->formatWithPrecision($transaction->total/$transaction->quantity) }} | {{ $formatNumber->formatQuantity($transaction->quantity) }} | {{-- Note: Calculate Total = (Unit Price - Discount) + Tax Here we are showing only Total, in below destriburted the discount and Tax --}}{{ $formatNumber->formatWithPrecision($transaction->total) }} |
{{ __('app.total') }} | {{ $formatNumber->formatQuantity($totalQty) }} | {{ $formatNumber->formatWithPrecision($sale->grand_total) }} |
{{ __('tax.tax') }} | {{ __('tax.taxable_amount') }} | {{ __('tax.rate') }} | {{ __('tax.tax_amount') }} | |||
---|---|---|---|---|---|---|
{{ __('item.hsn') }} | {{ __('tax.taxable_amount') }} | {{ __('tax.gst') }} | {{ __('tax.tax_amount') }} | |||
{{ __('tax.rate') }}% | {{ __('app.amount') }} | |||||
{{ $summary['tax_name'] }} | {{ $formatNumber->formatWithPrecision($summary['total_taxable_amount']) }} | {{ $summary['tax_rate'] }}% | {{ $formatNumber->formatWithPrecision($summary['total_tax']) }} | |||
{{ $summary['hsn'] }} | {{ $formatNumber->formatWithPrecision($summary['total_taxable_amount']) }} | @php $cs_gst = $i_gst = ''; $cs_gst_amt = $i_gst_amt = ''; if($isCSGST){ $cs_gst = ($summary['tax_rate']/2).'%'; $cs_gst_amt = $formatNumber->formatWithPrecision($summary['total_tax']/2); }else{ $i_gst = ($summary['tax_rate']).'%'; $i_gst_amt = $formatNumber->formatWithPrecision($summary['total_tax']); } @endphp @if($isCSGST){{ $cs_gst }} | {{ $cs_gst_amt }} | @else{{ $i_gst }} | {{ $i_gst_amt }} | @endif{{ $formatNumber->formatWithPrecision($summary['total_tax']) }} |