@extends('backend.layouts.admin.admin') @section('title', 'Appointments') @section('content')
Appointments
@foreach ($appointments as $key => $appointment) @endforeach
# Doctor Name Patient Name Preferred Date / Time Actions
{{++$key}} {{$appointment->doctor_id ? $appointment->doctor->name : ''}} {{$appointment->fullname}} {{$appointment->preferred_date->format('d M,Y')}}/{{$appointment->preferred_time}}
@stop @push('styles') @endpush