@extends('layouts.app') @section('title', 'Cashier Dashboard') @section('content')
| Date | Client | Billing # | Amount | Method | Status |
|---|---|---|---|---|---|
| {{ $payment->created_at ? \Carbon\Carbon::parse($payment->created_at)->format('M d, Y') : 'N/A' }} | {{ $payment->billing?->client?->name ?? 'N/A' }} | {{ $payment->billing->billing_number ?? 'N/A' }} | {{ $currencySymbol }}{{ number_format($payment->amount, 2) }} | {{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }} | {{ ucfirst($payment->status) }} |
No payments recorded yet.
@endif{{ $company->city ?? 'N/A' }}, {{ $company->country ?? 'N/A' }}
Currency: {{ $currencySymbol }}
No collections recorded today
@endif| Client | Account # | Overdue | Overdue Since | Amount Due |
|---|---|---|---|---|
| {{ $billing->client->name }} | {{ $billing->client->account_number }} | {{ $billing->overdueForHumans() }} | {{ $billing->overdueSince()?->format('M d, Y') ?? '—' }} | {{ $currencySymbol }}{{ number_format($billing->balance, 2) }} |
No overdue billings
@endif| Client | Account # | Disconnect Date | Amount Due |
|---|---|---|---|
| {{ $billing->client->name }} | {{ $billing->client->account_number }} | {{ $billing->getEffectiveDisconnectionDate()?->format('M d, Y') ?? 'N/A' }} | {{ $currencySymbol }}{{ number_format($billing->balance, 2) }} |
No billings eligible for disconnection
@endif| Client | Amount | Date Applied |
|---|---|---|
| {{ $payment->billing?->client->name ?? 'N/A' }} | {{ $currencySymbol }}{{ number_format($payment->amount, 2) }} | {{ $payment->created_at->format('M d, Y H:i') }} |
No late fees applied
@endif