|
{{ $invoice->client->user->name ?? '' }} {{ $invoice->client->user->phone ?? '' }} |
{{ $settings->company->name ?? '' }} {{ $settings->company->address ?? '' }} {{ $settings->company->email ?? '' }} {{ $settings->company->phone ?? '' }} |
| Invoice Number | {{ $invoice->invoice_id ?? '' }} |
| Payment Date | {{ $payment->payment_date ? \Carbon\Carbon::parse($payment->payment_date)->format('d-m-Y') : '' }} |
| Payment Method | {{ \App\Models\PaymentsModel::PAYMENT_MODE[$payment->payment_mode] ?? 'Wallet' }} |
| Previously Paid Amount | ₹ {{ number_format($previousPaid,2) }} |
| Currently Paid Amount | ₹ {{ number_format($currentPaid,2) }} |
| Balance Amount | ₹ {{ number_format($balanceAmount,2) }} |