@props(['invoice' => $invoice])
# | ITEM | DESCRIPTION | UNIT COST | QUANTITY | TOTAL |
---|---|---|---|---|---|
{{ $item['name'] }} | {{ $item['description'] ?? '' }} | {{ app(App\Settings\ThemeSettings::class)->currency_symbol . ' ' . $item['unit_cost'] }} | {{ $item['quantity'] }} | {{ app(App\Settings\ThemeSettings::class)->currency_symbol . ' ' . $item['total'] }} |
Tax: | {{ $invoice->tax->percentage }}% | @endif
---|---|
Total: | {{ app(App\Settings\ThemeSettings::class)->currency_symbol . ' ' . $invoice->total }} | @endif
{{ $invoice->note }}
@elseNo additional notes.
@endif