{!! strip_tags($proposal->description, ['p', 'b', 'strong', 'a', 'ul', 'li', 'ol', 'i', 'u', 'em', 'blockquote', 'img']) !!}
@endif
|
@lang('app.description') |
@if ($invoiceSetting->hsn_sac_code_show)
@lang("app.hsnSac") |
@endif
@lang("modules.invoices.qty") |
@lang("modules.invoices.unitPrice") |
@lang("modules.invoices.tax") |
@lang("modules.invoices.amount")
({{ $proposal->currency->currency_code }}) |
@foreach ($proposal->items as $item)
@if ($item->type == 'item')
{{ ucfirst($item->item_name) }} |
@if ($invoiceSetting->hsn_sac_code_show)
{{ $item->hsn_sac_code ? $item->hsn_sac_code : '--' }} |
@endif
{{ $item->quantity }} |
{{ currency_formatter($item->unit_price, '') }} |
{{ $item->tax_list }} |
{{ currency_formatter($item->amount, '') }} |
@if ($item->item_summary != '' || $item->proposalItemImage)
{!! nl2br(strip_tags($item->item_summary, ['p', 'b', 'strong', 'a'])) !!}
@if ($item->proposalItemImage)
@endif