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

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

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

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

{{ __('Receptionist') }}

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

{{ $user->last_login }}

@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.appointments') }}

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

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

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

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

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

{{ __("translation.today's-appointments") }}

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

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

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

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

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

{{ __("translation.today's-appointments") }}

@foreach ($appointments as $item) @endforeach
{{ __('Sr.No.') }} {{ __('Patient Name') }} {{ __('Doctor Name') }} {{ __('Date') }} {{ __('Contact No ') }} {{ __('Time') }}
{{ $loop->index + 1 }} {{ $item->patient->first_name . ' ' . $item->patient->last_name }} {{ @$item->doctor->user->first_name . ' ' . @$item->doctor->user->last_name }} {{ $item->appointment_date }} {{ $item->patient->mobile }} {{ $item->timeSlot->from . ' ' . $item->timeSlot->to }}

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

@foreach ($doctors as $item) @endforeach
{{ __('Sr. No.') }} {{ __('Name') }} {{ __('Contact No') }} {{ __('Email') }} {{ __('View Details') }}
{{ $loop->index + 1 }} {{ @$item->doctor->first_name }} {{ @$item->doctor->last_name }} {{ @$item->doctor->mobile }} {{ @$item->doctor->email }}
@foreach ($patients as $patient) @endforeach
{{ __('Sr.No.') }} {{ __('Name') }} {{ __('Contact No') }} {{ __('Email') }} {{ __('View Details') }}
{{ $loop->index + 1 }} {{ $patient->first_name }} {{ $patient->last_name }} {{ $patient->mobile }} {{ $patient->email }}