{{ __('translation.dashboards') }}

{{ __('translation.welcome-back') }} !

{{ __('translation.dashboards') }}

{{ $user->first_name }} {{ $user->last_name }}

{{ __('Patient') }}

{{ __('Last Login:') }}

{{ $user->last_login }}

{{ __('translation.monthly-expense') }}

{{ __('This month') }}

${{ number_format($data['monthly_earning']) }}

{{ $data['monthly_diff'] }}% {{ __('From previous month') }}

{{ __('translation.appointments') }}

{{ number_format($data['total_appointment']) }}

@if (session()->has('page_limit')) @php $per_page = session()->get('page_limit'); @endphp @else @php $per_page = Config::get('app.page_limit'); @endphp @endif

{{ __('translation.items-per-page') }}

{{ __('translation.latest-appointment') }}

@foreach ($appointments as $item) @endforeach
{{ __('Sr.No.') }} {{ __('Doctor Name') }} {{ __('Date') }} {{ __('Time') }} {{ __('Status') }}
{{ $loop->index + 1 }} {{ @$item->doctor->user->first_name }} {{ @$item->doctor->user->last_name }} {{ $item->appointment_date }} {{ $item->timeSlot->from . ' to ' . $item->timeSlot->to }} @if ($item->status == 0) Pending @elseif ($item->status == 1 ) Success @elseif ($item->status == 2 ) Cancel @endif