Invoice Type
{{ $invoice->typeLabel() }}
Currency
{{ $invoice->currency_code }} ({{ $invoice->currency_symbol }})
@if($invoice->tax_system)
Tax System
{{ $invoice->tax_system }}
@endif
@if($invoice->payment_mode)
Payment Mode
{{ str_replace('_', ' ', $invoice->payment_mode) }}
@endif
Issued At
{{ $invoice->issued_at->format('d M Y, h:i A') }}
@if($invoice->email_sent_at)
Email Sent
{{ $invoice->email_sent_at->format('d M Y, h:i A') }}
@endif
@if($invoice->broker_copy_sent)
Broker Copy
Sent ✓
@endif
@if($invoice->meta)
@php $meta = is_array($invoice->meta) ? $invoice->meta : json_decode($invoice->meta, true); @endphp
@if(!empty($meta['milestone_label']))
Milestone
{{ $meta['milestone_label'] }}
@endif
@if(!empty($meta['broker_name']))
Broker
{{ $meta['broker_name'] }}
@endif
@endif