{{ $company['address'] }}
Phone: {{ $company['phone'] }} | Email: {{ $company['email'] }}
{{ $invoice->customer->name }}
{{ $invoice->customer->phone }}
{{ $invoice->customer->email }}
{{ $invoice->customer->address }}
Invoice #: {{ $invoice->invoice_number }}
Date: {{ $invoice->created_at->format('d M Y') }}
@if($invoice->due_date)Due Date: {{ $invoice->due_date->format('d M Y') }}
@endif @if($invoice->paid_date)Paid Date: {{ $invoice->paid_date->format('d M Y') }}
@endif| Description | Amount |
|---|---|
|
{{ $invoice->package->name ?? 'Service' }} {{ ucfirst($invoice->invoice_type) }} - {{ $invoice->description ?? 'Monthly subscription' }} |
Rp {{ number_format($invoice->amount, 0, ',', '.') }} |
| Tax | Rp {{ number_format($invoice->tax_amount, 0, ',', '.') }} |
| TOTAL | Rp {{ number_format($invoice->total_amount, 0, ',', '.') }} |