@extends('layouts.website.website') @section('content')
Appointment Requests
@foreach (App\DoctorAppoinment::where('appoinment_status','Pending Confirmation')->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 }}
@endsection