@extends('layouts.doctor') @section('title', 'Doctor Dashboard') @section('header', 'Medical Dashboard') @section('content')
{{ $doctor->designation->name }} • {{ $doctor->department->name }}
Live list of scheduled OPD appointments
| Token & Time | Patient Details | Visit Nature | Action |
|---|---|---|---|
|
No
{{ str_pad($app->token_number ?? 0, 2, '0', STR_PAD_LEFT) }}
{{ $app->visit_time }}
{{ $app->token_prefix ?: $app->uhid }}
|
{{ $app->full_name }}
{{ $app->gender }} • {{ $app->age }} Years
|
{{ $app->visit_nature ?: 'Standard' }}
@if($app->is_calling)
Now Calling
@endif
@if($app->status == 'completed' && $app->consultation_duration)
Time Taken: {{ floor($app->consultation_duration / 60) }}m {{ $app->consultation_duration % 60 }}s
@endif
|
@if($app->status == 'completed')
Consulted
@elseif(!$app->is_calling)
@else
@endif
Clinical View
|
Your clinic queue is currently empty.