@extends('layouts.app') @section('title') {{__('messages.dashboard')}} @endsection @section('content')

{{__('messages.welcome_back')}}

{{__('messages.dashboard')}}
@if(getLogInUser()->hasRole('patient')) img-fluid @elseif(getLogInUser()->hasRole('doctor')) img-fluid @else img-fluid @endif

{{ getLogInUser()->full_name }}

{{ getLogInUser()->email }}

{{__('messages.user.edit_profile')}}

{{__('messages.doctor.profile')}} →

{{__('messages.monthly_earning')}}

{{__('messages.datepicker.this_month')}}
0
{{__('messages.from_previous_month')}}
@forelse($appointments['records'] as $appointment) @empty @endforelse
{{__('messages.doctor_appointment.patient')}} {{__('messages.patient.patient_unique_id')}} {{__('messages.appointment.date')}}
user
{{$appointment->patient->user->fullname}} {{$appointment->patient->user->email}}
{{$appointment->patient->patient_unique_id}}
{{$appointment->from_time}} {{$appointment->from_time_type}} - {{$appointment->to_time}} {{$appointment->to_time_type}}
{{ \Carbon\Carbon::parse($appointment->date)->isoFormat('DD MMM YYYY')}}
{{ __('messages.common.no_data_available') }}
{{__('messages.doctor_appointment.patient')}} {{__('messages.patient.patient_unique_id')}} {{__('messages.appointment.date')}}
{{__('messages.doctor_appointment.patient')}} {{__('messages.patient.patient_unique_id')}} {{__('messages.appointment.date')}}
@include('doctor_dashboard.templates.templates') @endsection