Invoice Number {{$invoice->invoice_id ?? ''}}
Invoice Date {{$invoice->invoice_date ? \Carbon\Carbon::parse($invoice->invoice_date)->format('d-m-Y') : ''}}
(+91) {{$invoice->client->user->phone ?? ''}}
@php
$address = optional(optional($invoice->order)->clientAddress)->address
?? optional(optional($invoice->client)->user)->location
?? '';
@endphp
{{$address ?? ''}}
{{$settings->address ?? ''}}
{{$settings->email ?? ''}}
(+91) {{$settings->phone ?? ''}}
| No | Description | Amount |
|---|---|---|
| Payment Date | {{\Carbon\Carbon::parse($payment->payment_date)->format('d-m-Y')}} | |
| Payment Method | {{ \App\Models\PaymentsModel::PAYMENT_MODE[$payment->payment_mode] ?? '-' }} | |
| Previously Paid Amount | ₹ {{number_format($previousPaid ?? 0,2)}} | |
| Currently Paid Amount | ₹ {{number_format($currentPaid ?? 0,2)}} | |
| Balance Amount | ₹ {{number_format($balanceAmount ?? 0,2)}} |