@extends('layouts.website.website') @section('content')
Todays Appointments
@foreach (App\DoctorAppoinment::whereDate('appoinment_date',Carbon\Carbon::today())->latest()->get() as $item) @if ($item->patient) @else @endif @if ($item->doctor) @else @endif @endforeach
Id Patient Doctor Date - Time Remarks Status Options
{{ $item->id }}{{ $item->patient->name }}{{ $item->doctor->name }}{{ $item->appoinment_date }} | {{ $item->appoinment_time }} {{ $item->remarks }} {{ $item->appoinment_status }}
@include('hms.appointment_bottom') @endsection