@extends('layouts.app') @section('title') {{__('messages.dashboard')}} @endsection @section('content')
@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