{{ $invoice->invoice_number }}
@if($creditNote)@lang('app.credit-note'): {{ $creditNote->cn_number }}
@endif
@lang('app.menu.issues') @lang('app.date'): {{ $invoice->issue_date->format($global->date_format) }}
@if($invoice->status == 'unpaid')
@lang('app.dueDate'): {{ $invoice->due_date->format($global->date_format) }}
@endif
@lang('app.status'): {{ ucwords($invoice->status) }}
# | @lang("modules.invoices.item") | @lang("modules.invoices.qty") | @lang("modules.invoices.unitPrice") | @lang("modules.invoices.price") |
---|---|---|---|---|
{{ ++$count }} | {{ ucfirst($item->item_name) }}@if(!is_null($item->item_summary)){{ $item->item_summary }} @endif |
{{ $item->quantity }} |
{!! htmlentities($invoice->currency->currency_symbol) !!}{{ number_format((float)$item->unit_price, 2, '.', '') }} |
{!! htmlentities($invoice->currency->currency_symbol) !!}{{ number_format((float)$item->amount, 2, '.', '') }} |
@lang("modules.invoices.subTotal") | {!! htmlentities($invoice->currency->currency_symbol) !!}{{ number_format((float)$invoice->sub_total, 2, '.', '') }} | |||
@lang("modules.invoices.discount") | -{!! htmlentities($invoice->currency->currency_symbol) !!}{{ number_format((float)$discount, 2, '.', '') }} | |||
{{ strtoupper($key) }} | {!! htmlentities($invoice->currency->currency_symbol) !!}{{ number_format((float)$tax, 2, '.', '') }} | |||
@lang("modules.invoices.total") | {!! htmlentities($invoice->currency->currency_symbol) !!}{{ number_format((float)$invoice->total, 2, '.', '') }} | |||
@lang('modules.invoices.appliedCredits') | {!! htmlentities($invoice->currency->currency_symbol) !!}{{ number_format((float)$invoice->appliedCredits(), 2, '.', '') }} | |||
@lang("modules.invoices.total") @lang("modules.invoices.paid") | {!! $invoice->currency->currency_symbol !!} {{ number_format((float)$invoice->getPaidAmount(), 2, '.', '') }} | |||
@lang("modules.invoices.total") @lang("modules.invoices.due") | {!! htmlentities($invoice->currency->currency_symbol) !!}{{ number_format((float)$invoice->amountDue(), 2, '.', '') }} |
@lang("app.note"): Here {!! htmlentities($invoice->currency->currency_symbol) !!} refers to {!! $invoice->currency->currency_code !!}
@if(!is_null($invoice->note))
{!! nl2br($invoice->note) !!}
@endif
@if($invoice->status == 'unpaid')
{!! nl2br($invoiceSetting->invoice_terms) !!}
@endif