Bill To
@if($invoice->user)
{{ $invoice->user->first_name }} {{ $invoice->user->last_name }}
@if($invoice->user->company)
{{ $invoice->user->company }}
@endif
@if($invoice->user->email)
{{ $invoice->user->email }}
@endif
@if($invoice->user->phone)
{{ $invoice->user->phone }}
@endif
@else
N/A
@endif
Invoice Details
Invoice Date:
{{ $invoice->created_at->format('M d, Y') }}
Due Date:
{{ $invoice->due_date?->format('M d, Y') ?? 'N/A' }}
Type:
{{ ucfirst($invoice->type ?? 'N/A') }}
Currency:
{{ $invoice->currency_code }}
@if($invoice->paid_at)
Paid On:
{{ $invoice->paid_at->format('M d, Y') }}
@endif