@lang('app.description') |
@if ($invoiceSetting->hsn_sac_code_show)
@lang('app.hsnSac')
@endif
| @lang('modules.invoices.qty')
|
@lang('modules.invoices.unitPrice') ({{ $invoice->currency->currency_code }})
|
@lang('modules.invoices.amount')
({{ $invoice->currency->currency_code }}) |
@foreach ($invoice->items as $item)
@if ($item->type == 'item')
{{ ucfirst($item->item_name) }} |
@if ($invoiceSetting->hsn_sac_code_show)
{{ $item->hsn_sac_code }} |
@endif
{{ $item->quantity }} |
{{ number_format((float) $item->unit_price, 2, '.', '') }} |
{{ number_format((float) $item->amount, 2, '.', '') }}
|
@if ($item->item_summary != '' || $item->recurringInvoiceItemImage)
{!! nl2br(strip_tags($item->item_summary)) !!}
@if ($item->recurringInvoiceItemImage)
@endif
|
@endif
@endif
@endforeach
@if ($invoiceSetting->show_project == 1 && isset($invoice->project->project_name))
@lang('modules.invoices.projectName')
{{ $invoice->project->project_name }}
@endif
|
@lang('modules.invoices.subTotal') |
{{ number_format((float) $invoice->sub_total, 2, '.', '') }}
|
@if ($discount != 0 && $discount != '')
@lang('modules.invoices.discount') |
{{ number_format((float) $discount, 2, '.', '') }} |
@endif
@foreach ($taxes as $key => $tax)
{{ mb_strtoupper($key) }} |
{{ number_format((float) $tax, 2, '.', '') }} |
@endforeach
@lang('modules.invoices.total') |
{{ number_format((float) $invoice->total, 2, '.', '') }} |
|