{{ $invoice->invoice_number }}
@if ($creditNote)@lang('app.credit-note'): {{ $creditNote->cn_number }}
@endif
@lang('app.menu.issuesDate'):
{{ $invoice->issue_date->translatedFormat(company()->date_format) }}
@if ($invoice->status === 'unpaid')
@lang('app.dueDate'):
{{ $invoice->due_date->translatedFormat(company()->date_format) }}
@endif
@lang('app.status'): {{ $invoice->status }}
# | @lang('modules.invoices.item') | @lang('modules.invoices.qty') | @lang('modules.invoices.unitPrice') ({!! htmlentities($invoice->currency->currency_code) !!}) | @lang('modules.invoices.price') ({!! htmlentities($invoice->currency->currency_code) !!}) |
---|---|---|---|---|
{{ ++$count }} |
{{ $item->item_name }}@if (!is_null($item->item_summary)){!! nl2br(pdfStripTags($item->item_summary)) !!} @endif |
{{ $item->quantity }} |
{{ number_format((float) $item->unit_price, 2, '.', '') }} |
{{ number_format((float) $item->amount, 2, '.', '') }} |
@lang('modules.invoices.subTotal') | {{ number_format((float) $invoice->sub_total, 2, '.', '') }} | |||
@lang('modules.invoices.discount') | {{ number_format((float) $discount, 2, '.', '') }} | |||
{{ $key }} | {{ number_format((float) $tax, 2, '.', '') }} | |||
@lang('modules.invoices.total') | {{ number_format((float) $invoice->total, 2, '.', '') }} | |||
@lang('modules.invoices.appliedCredits') | {{ number_format((float) $invoice->appliedCredits(), 2, '.', '') }} | |||
@lang('app.totalPaid') | {{ number_format((float) $invoice->getPaidAmount(), 2, '.', '') }} | |||
@lang('app.totalDue') | {{ number_format((float) $invoice->amountDue(), 2, '.', '') }} |
@if (!is_null($invoice->note))
@lang('app.note')
{!! nl2br($invoice->note) !!}
@endif
@if ($invoice->status == 'unpaid')
@lang('modules.invoiceSettings.invoiceTerms')
{!! nl2br($invoiceSetting->invoice_terms) !!}
@endif
@if (isset($invoiceSetting->other_info))
{!! nl2br($invoiceSetting->other_info) !!}
@endif