Invoice #{{ $invoice->invoice_number }}
Date: {{ $invoice->invoice_date->format("dS M Y") }}
# | Item | Quantity | Cost Per Item | Price |
---|---|---|---|---|
{{ ++$count }} | {{ ucfirst($item->item_name) }} |
{{ $item->quantity }} |
{{ $gymSettings->currency->acronym }} {{ $item->cost_per_item }} |
{{ $gymSettings->currency->acronym }} {{ $item->amount }} |
Subtotal | {{ $gymSettings->currency->acronym }} {{ round($invoice->sub_total, 2) }} | |||
@if($item->item_type == 'discount')Discount:@else {{ strtoupper($item->item_name) }}: @endif | @if($item->item_type == 'discount')-@endif{{ $gymSettings->currency->acronym }} {{ round($item->amount, 2) }} | |||
TOTAL | {{ $gymSettings->currency->acronym }} {{ round($invoice->total, 2) }} |