Invoice

{{ $invoice->company->name }}

{{ $invoice->company->name }}
@if($invoice->company->address)
{{ $invoice->company->address }}
@endif @if($invoice->company->phone)
{{ $invoice->company->phone }}
@endif @if($invoice->company->email)
{{ $invoice->company->email }}
@endif
{{ $invoice->invoice_number }}
{{ $invoice->title }}
{{ $invoice->status }}
Invoice Date: {{ \Carbon\Carbon::parse($invoice->invoice_date)->format('M d, Y') }}
Due Date: {{ \Carbon\Carbon::parse($invoice->due_date)->format('M d, Y') }}
@if($customMessage)
Message:
{{ $customMessage }}
@endif
Bill To
{{ $invoice->customer->name }}
@if($invoice->customer->email)
{{ $invoice->customer->email }}
@endif @if($invoice->customer->phone)
{{ $invoice->customer->phone }}
@endif @if($invoice->customer->address)
{{ $invoice->customer->address }}
@endif
@if($invoice->description)
Description
{{ $invoice->description }}
@endif
Invoice Items
@foreach($invoice->lineItems as $item) @endforeach
Description Quantity Unit Price Total
{{ $item->description }} {{ $item->quantity }} {{ $invoice->company->formatCurrencyZar($item->unit_price) }} {{ $invoice->company->formatCurrencyZar($item->total) }}
Subtotal: {{ $invoice->company->formatCurrencyZar($invoice->subtotal) }}
Tax ({{ $invoice->tax_rate }}%): {{ $invoice->company->formatCurrencyZar($invoice->tax_amount) }}
Total: {{ $invoice->company->formatCurrencyZar($invoice->total) }}
@if($invoice->due_date < now())
Important: This invoice is overdue. Please make payment as soon as possible.
@endif

Next Steps

  • Review the invoice details above
  • Make payment by the due date: {{ \Carbon\Carbon::parse($invoice->due_date)->format('M d, Y') }}
  • Contact us if you have any questions about this invoice
  • Keep this email for your records
@if($invoice->notes)
Notes
{{ $invoice->notes }}
@endif @if($invoice->terms)
Payment Terms
{{ $invoice->terms }}
@endif @if($invoice->terms_conditions)
Terms & Conditions
{{ $invoice->terms_conditions }}
@endif