@extends('layouts.website.website') @section('content')
Appointments
@foreach ($events as $item) @endforeach
Id Patient Date - Time Remarks Options
{{ $item->id }} {{ $item->patient->name }} {{ Carbon\Carbon::parse($item->appoinmen_date)->format('d,M y') }} => {{ Carbon\Carbon::parse($item->start)->format('h:i a') }} To {{ Carbon\Carbon::parse($item->end)->format('h:i a') }} Remarks
Doctor

{{ $doctor->name }}

{{ $doctor->doctor_profile }}

{{ $doctor->email }}
{{ $doctor->phone }}
@endsection