{{-- HEADER --}}
@include('partials.adminHeader')
{{-- SIDE NAVIGATION BAR --}}
{{-- LABEL --}}
USER DASHBOARD
{{-- ADMIN --}}
{{ $patient->patient_id }}
{{ $patient->last_name.', '.$patient->first_name.' '.$patient->middle_name }}
{{ $patient->date_of_birth }}
{{ $patient->gender }}
{{ $patient->address }}
{{ $patient->contact_number }}
{{ $patient->email_address }}
Transactions
| Transaction ID |
Type |
Credit |
Debit |
Balance |
Date |
@foreach ($payment as $transaction)
| {{ $transaction->payment_id }} |
{{ $transaction->type_of_appointment }} |
{{ number_format($transaction->credit, 2) }} |
{{ ($transaction->debit) }} |
{{ ($transaction->balance) }} |
{{ $transaction->created_at->format('Y-m-d') }} |
@endforeach
{{-- SCRIPTS --}}