{{-- @php echo '
'; print_r($appointments); echo '
'; @endphp --}}

Appointments

@if ( $appointments['count'] == 0 )
No Appointment Found
@else @foreach ($appointments['data'] as $appointment) @endforeach
PRN NID Appointment Date/Time Doctor Name Doctor MCR Status Deposit Amount
{{ $appointment['prn'] }} {{ $appointment['appt_id'] }} {{ $appointment['nid'] }} {{ date(_env('DT_FORMAT'), strtotime($appointment['appt_dt'])) }} {{ $appointment['doctor_name'] }} {{ $appointment['doctor_mcr'] }} {{ $appointment['appt_status'] }} {{ ( $appointment['appt_deposit_col'] ? "MVR " . $appointment['appt_deposit_amount'] : 'Not Collected' )}}
{{ generateBSPagination( cpanelPermalink('appointments/ajax/get-appointments'), $appointments['page'], $appointments['total_pages'], 'sw-appt-pg' ) }}
@endif