{{ $settings['company_name'] ?? 'PERFECT SERVICE' }}
{{ $settings['company_phone'] ?? '' }}
{{ $settings['company_address'] ?? '' }}
Receipt #: {{ $invoice->invoice_number }}
Date: {{ now()->format('d/m/Y H:i') }}
Customer: {{ $invoice->jobCard->customer_name }}
@foreach($invoice->items as $item)
| {{ $item->description }} |
| {{ $item->quantity }} x {{ number_format($item->unit_price, 2) }} |
{{ number_format($item->line_total, 2) }} |
@endforeach
| Subtotal: |
{{ number_format($invoice->subtotal, 2) }} |
@if($invoice->tax_amount > 0)
| Tax: |
{{ number_format($invoice->tax_amount, 2) }} |
@endif
@if($invoice->discount_amount > 0)
| Discount: |
-{{ number_format($invoice->discount_amount, 2) }} |
@endif
| TOTAL: |
GH₵ {{ number_format($invoice->total, 2) }} |
THANK YOU FOR YOUR BUSINESS!
Software by PerfectService