@extends('admin.layout') @section('title', 'Doctor Consultation Appointments') @section('content')
Appointment Booking Requests
@forelse($appointments as $app) @empty @endforelse
Patient Name Contact Date & Time Symptoms / Message Actions
{{ $app->name }} @if($app->email)
{{ $app->email }}
@endif
{{ $app->date }}
{{ $app->time }}

{{ $app->message ?? 'No details provided' }}

Delete
No appointment requests found.
@if($appointments->hasPages())
{{ $appointments->links() }}
@endif
@endsection