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

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

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

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

{{ @$doctor_info->department->name }}

{{ $doctor_info->title }}

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

{{ $user->last_login }}

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

{{ __('This month') }}

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

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

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

${{ number_format($data['revenue'], 2) }}

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

${{ number_format($data['daily_earning'], 2) }}

{{ __("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.monthly-appointments') }}

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

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