| {{ $loop->iteration }} |
{{ $appointment->appointment->customers->Full_Name ?? 'Customer not found' }}
|
{{ $appointment->Date_Time }} |
{{ number_format($appointment->Total_Amount, 2, '.', '') }}
| {{ $appointment->Bill_Discount }} |
{{ number_format($appointment->Net_Amount, 2, '.', '') }}
| {{ number_format($appointment->Cash_Paid, 2, '.', '') }}
| {{ number_format($appointment->Card_Paid, 2, '.', '') }}
| {{ number_format($appointment->Online_Paid, 2, '.', '') }}
| {{ number_format($appointment->Total_Paid, 2, '.', '') }}
| {{ number_format($appointment->Balance, 2, '.', '') }}
|
{{ $appointment->appointment->employees->Full_Name ?? 'Employee not found' }} |
@endforeach