Dashboard

Telemedicine

{{ number_format($totalTel) }}

Appointments

{{ number_format($totalApp) }}

Patients

{{ number_format($totalPatients) }}

Telemedicine

Appointments

@foreach ($indexShowApps as $i => $appointment) @endforeach
No Name Status Action
{{ $i + 1 }}. {{ $appointment->name }}
{{ $appointment->status }}

Monitor Logs

@foreach ($showLog as $i => $Log) @endforeach
No Name Action TimeStamp
{{ $i + 1 }}. {{ $Log->user->fullname ?? '-'}} {{ $Log->action ?? '-'}} {{ $Log->timestamp ?? '-' }}

Users Management

@foreach ($indexShowUser as $i => $user) @endforeach
No Name Birth Date Address Action
{{ $i + 1 }}. {{ $user->fullname ?? '-' }} {{ $user->patient->birth_date ?? '-' }} {{ $user->patient->address ?? '-' }}

Feedbacks

Feedbacks Table

@foreach ($showFeedback as $i => $f) @endforeach
No Customer Rating Review Date
{{ $i + 1 }}. {{ $f->user->name }} {{ $f->rating }} {{ $f->descripton }} {{ \Carbon\Carbon::parse($f->create_date)->format('d F Y') ?? '-' }}
@if(auth()->user()->role === 'superadmin')

Admin Action Histories

Admin Action Histories Table

@foreach ($showAdminAction as $i => $f) @endforeach
No Name Action Details TimeStamp
{{ $i + 1 }}. {{ $f->user->fullname ?? '-'}} {{ $f->action ?? '-'}} {{ $f->details ?? '-'}} {{ $f->timestamp ?? '-' }}
@endif