|
Invoice
|
Total
|
Status
|
Customer
|
Issued on
|
Paid on
|
Type
|
Actions
|
---|---|---|---|---|---|---|---|---|
|
{{ $invoice->invoice }}
|
{{ $invoice->total }}
|
{{ $invoice->status }}
|
{{ $invoice->customer }}
|
{{ \Carbon\Carbon::parse($invoice->issued_date)->format('d/m/Y') }}
|
@if($invoice->paid_date){{ \Carbon\Carbon::parse($invoice->paid_date)->format('d/m/Y') }}@else{{ '-' }}@endif
|
@if ($invoice->type === 'Subscription')
@else
@endif
{{ $invoice->type }}
|
|