@extends('layouts.app') @section('content')

Consultation Requests

@if(session('success'))
{{ session('success') }}
@endif
@forelse($bookings as $booking) @empty @endforelse
Client Practice Area Date & Time Status Reference Actions
{{ $booking->client_name }}
{{ $booking->email }}
@if($booking->phone)
{{ $booking->phone }}
@endif
{{ $booking->service->name }}
{{ $booking->appointment_date->format('M d, Y') }}
{{ \Carbon\Carbon::parse($booking->appointment_time)->format('g:i A') }}
@csrf @method('PATCH')
@if($booking->status !== 'cancelled')
@csrf @method('PATCH')
@endif
{{ $booking->medical_aid_name ?? 'N/A' }}
No consultation requests found
{{ $bookings->links() }}
@endsection