@if($invoiceSetting->hsn_sac_code_show) @endif @foreach ($invoice->items as $item) @if ($item->type == 'item') @if($invoiceSetting->hsn_sac_code_show) @endif @if ($item->item_summary != '' || $item->invoiceItemImage)
@lang('app.description')@lang("app.hsnSac")@lang("modules.invoices.qty") @lang("modules.invoices.unitPrice") ({{ $invoice->currency->currency_code }}) @lang("modules.invoices.amount") ({{ $invoice->currency->currency_code }})
{{ ucfirst($item->item_name) }} {{ $item->hsn_sac_code ? $item->hsn_sac_code : '--' }}{{ $item->quantity }} {{ number_format((float) $item->unit_price, 2, '.', '') }} {{ number_format((float) $item->amount, 2, '.', '') }}
{!! nl2br(strip_tags($item->item_summary)) !!} @if ($item->invoiceItemImage)

@endif
@endif @endif @endforeach @if (isset($taxes) && invoice_setting()->tax_calculation_msg == 1) @endif @if (count($payments) > 0)

@lang('app.menu.payments') ({{ $invoice->invoice_number }})

@forelse($payments as $key => $payment) @empty @endforelse
# @lang("modules.invoices.price") @lang("modules.invoices.paymentMethod") @lang("modules.invoices.paidOn")
{{ $key + 1 }} {{ number_format((float) $payment->amount, 2, '.', '') }} {{ $invoice->currency->currency_code }} @php $method = '--'; if(!is_null($payment->offline_method_id)) { $method = $payment->offlineMethod->name; } elseif(isset($payment->gateway)){ $method = $payment->gateway; } @endphp {{ $method }} {{ $payment->paid_on->format($global->date_format) }}
@lang('messages.noRecordFound')
@endif