@extends('layouts.website.website') @section('content')
Appointment
@if (Auth::user()->role_id != 8)
@endif
@foreach ($DoctorAppoinment 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 }} @if (Auth::user()->role_id != 8) @endif @if (Auth::user()->role_id == 8 || Auth::user()->role_id == 4) Live @endif
@foreach ($pendingDoctorAppoinment 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 }} @if (Auth::user()->role_id != 8) @endif @if (Auth::user()->role_id == 8 || Auth::user()->role_id == 4) Live @endif
@foreach ($confirmDoctorAppoinment 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 }} @if (Auth::user()->role_id != 8) @endif @if (Auth::user()->role_id == 8 || Auth::user()->role_id == 4) Live @endif
@foreach ($teatedDoctorAppoinment 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 }} @if (Auth::user()->role_id != 8) @endif @if (Auth::user()->role_id == 8 || Auth::user()->role_id == 4) Live @endif
@foreach ($CancelledDoctorAppoinment 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 }} @if (Auth::user()->role_id != 8) @endif @if (Auth::user()->role_id == 8 || Auth::user()->role_id == 4) Live @endif
@foreach ($RequestedDoctorAppoinment 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 }} @if (Auth::user()->role_id != 8) @endif @if (Auth::user()->role_id == 8 || Auth::user()->role_id == 4) Live @endif
@include('hms.appointment_bottom') @endsection