@props(['invoice' => $invoice])
# | {{ __('ITEM') }} | {{ __('DESCRIPTION') }} | {{ __('UNIT COST') }} | {{ __('QUANTITY') }} | {{ __('TOTAL') }} |
---|---|---|---|---|---|
{{ ++$i}} | {{ $item->name }} | {{ $item->description }} | {{ LocaleSettings('currency_symbol') }} {{ $item->unit_cost }} | {{ $item->quantity }} | {{ LocaleSettings('currency_symbol') }} {{ $item->total }} |
{{ __('Subtotal') }}: | {{ LocaleSettings('currency_symbol') }} {{ $invoice->subtotal }} |
---|---|
{{ __('Tax') }}: ({{ $invoice->tax->percentage }}%) | {{ LocaleSettings('currency_symbol') }}{{ $invoice->tax_amount }} |
{{ __('Discount') }}: ({{ $invoice->discount }}%) | {{ LocaleSettings('currency_symbol') }}{{ $invoice->discount }} |
Total: | {{ LocaleSettings('currency_symbol') }} {{ $invoice->grand_total }} |
{{ $invoice->note }}