@lang('app.description') |
@if ($invoiceSetting->hsn_sac_code_show == 1)
@lang("app.hsnSac") |
@endif
@lang('modules.invoices.qty')
|
@lang("modules.invoices.unitPrice")
({{ $proposal->currency->currency_code }})
|
@lang("modules.invoices.tax")
|
@lang("modules.invoices.amount")
({{ $proposal->currency->currency_code }}) |
@foreach ($proposal->items as $item)
@if ($item->type == 'item')
{{ $item->item_name }} |
@if ($invoiceSetting->hsn_sac_code_show == 1)
{{ $item->hsn_sac_code }} |
@endif
{{ $item->quantity }}@if($item->unit) {{ $item->unit->unit_type }}@endif |
{{ currency_format($item->unit_price, $proposal->currency_id, false) }}
|
{{ $item->tax_list }}
|
{{ currency_format($item->amount, $proposal->currency_id, false) }}
|
@if ($item->item_summary || $item->proposalItemImage)
{!! nl2br(strip_tags($item->item_summary)) !!}
@if ($item->proposalItemImage)
@endif
|
@endif
@endif
@endforeach
|
@lang("modules.invoices.subTotal") |
{{ currency_format($proposal->sub_total, $proposal->currency_id, false) }}
|
@if ($discount != 0 && $discount != '')
@lang("modules.invoices.discount") |
{{ currency_format($discount, $proposal->currency_id, false) }}
|
@endif
@foreach ($taxes as $key => $tax)
{{ $key }} |
{{ currency_format($tax, $proposal->currency_id, false) }}
|
@endforeach
@lang("modules.invoices.total")
|
{{ currency_format($proposal->total, $proposal->currency_id, false) }}
|
|