Total Little Patients
Children Waiting
Visits Completed
Total Payment
Launch Public Display
{{ config('app.name','Children Clinic') }}
Specialized Pediatric Care
{{ $consult->patient?->full_name ?? 'Unknown Patient' }}
{{ $consult->service?->name ?? 'OPD Visit' }} · {{ $consult->doctor?->full_name ?? 'Any' }}
{{ $consult->patient?->uhid ?? 'N/A' }} · {{ $consult->patient?->gender ?? 'N/A' }} · {{ $consult->patient?->age ?? 'N/A' }}
{{ $consult->bill?->payment_method ?? $consult->payment_method }}
@elseif($billStatus === 'Partially Paid') PARTIALPaid ₹{{ number_format($paid, 0) }} · Due ₹{{ number_format($due, 0) }}
@else UNPAID @endifThe queue is currently empty
| Token # | Patient Details | Service & Doctor | Payment | Status | Actions |
|---|---|---|---|---|---|
|
TKN
#{{ str_pad($consult->token_number, 2, '0', STR_PAD_LEFT) }}
|
{{ $consult->patient?->full_name ?? 'Unknown Patient' }}
@if($consult->patient && $consult->patient->vitals->count() > 0)
@elseif($consult->patient)
@endif
ID: {{ $consult->patient?->uhid ?? 'N/A' }}
{{ $consult->patient?->gender ?? 'N/A' }} · {{ $consult->patient?->age ?? 'N/A' }}
|
{{ $consult->service?->name ?? 'Consultation' }}
{{ $consult->doctor?->full_name ?? 'TBD' }}
|
₹{{ number_format($consult->fee, 0) }}
@php
$billStatus = $consult->bill?->payment_status;
$paid = $consult->bill ? (float) $consult->bill->paid_amount : 0;
$due = $consult->bill ? max(0, (float) $consult->bill->balance_amount) : 0;
@endphp
@if($billStatus === 'Paid' || $consult->payment_status === 'Paid')
{{ $consult->bill?->payment_method ?? $consult->payment_method }}
@elseif($billStatus === 'Partially Paid')
Paid ₹{{ number_format($paid, 0) }} · Due ₹{{ number_format($due, 0) }}
@else
NOT PAID
@endif
|
|
|
|
The queue is currently empty |
|||||