{{-- --}}
{{ $invoice->business->website ?? 'www.website.com' }}
{{ $invoice->user->email }}
{{ $invoice->user->phone ?? '+91 00000 00000' }}
{{ $invoice->business->address ?? 'Business address' }}
{{ $invoice->business->city ?? 'City' }}, {{ $invoice->business->state ?? 'State' }}, {{ $invoice->business->country ?? 'Country' }} - {{ $invoice->business->postal_code ?? '000 000' }}
TAX ID {{ $invoice->business->tax_id ?? '00XXXXX1234X0XX' }}
{{ $invoice->customer->name }}
{{ $invoice->customer->address }}
{{ $invoice->customer->phone }}
{{ $invoice->subject }}
#{{ $invoice->invoice_number }}
{{ $invoice->business->currency_symbol }}{{ number_format($invoice->total, 2) }}
{{ $invoice->reference }}
{{ $invoice->created_at->format('d M, Y') }}
{{ $invoice->due_date->format('d M, Y') }}
Item Detail | QTY | Rate | Amount |
---|---|---|---|
{{ $item->name }} {{ $item->description }} |
{{ $item->quantity }} | {{ $invoice->business->currency_symbol }}{{ number_format($item->price, 2) }} | {{ $invoice->business->currency_symbol }}{{ number_format($item->total, 2) }} |
{{ $invoice->notes }}
{{ $invoice->terms ?? 'Please pay within 15 days of receiving this invoice.' }}