Telemedicine Dashboard

See and manage all your online consultation schedules, view patient information, and join meetings directly from this page. Stay updated on every booking and keep your telemedicine appointments organized and efficient.

🗓️

Total

{{ $totalTelemedicine }}

Waiting

{{ $waitingCount }}

Completed

{{ $completedCount }}

Telemedicine Chart

New Telemedicine

@forelse ($telData ?? [] as $i => $a)
✅ {{ \Carbon\Carbon::parse($a->scheduled_at)->format('l, d F Y h:i A') }}
@empty
No Draft Tickets
@endforelse
{{-- filtering--}}

Telemedicine Data

@php $waitingOngoing = ($telemedicines['waiting'] ?? collect())->merge($telemedicines['ongoing'] ?? collect()); @endphp {{-- @foreach ($telemedicines['waiting'] ?? [] as $i => $a) --}} @foreach ($waitingOngoing as $i => $a) @endforeach
No Name Schedule Type Status Action
{{ $i + 1 }}. {{ $a->fullname }} {{ \Carbon\Carbon::parse($a->date)->format('d-m-Y') }} {{ \Carbon\Carbon::parse($a->scheduled_at)->format('h:i A') ?? '-' }}
{{ $a->status }}
{{-- --}} {{-- --}}
@foreach ($telemedicines['cancelled']?? [] as $i => $a) @endforeach
No Name Date Time Status Action
{{ $i + 1 }}. {{ $a->fullname }} {{ \Carbon\Carbon::parse($a->date)->format('d-m-Y') }} {{ \Carbon\Carbon::parse($a->scheduled_at)->format('h:i A') ?? '-' }}
{{ $a->status }}