@extends('layouts.main') @section('content')
Welcome back to your personalized healthcare portal
{{ $user->first_name }} {{ $user->last_name }}
{{ $user->email }}
{{ $user->phone_number ?? '-' }}
{{ $user->country ?? '-' }}
| User | Appointment Date | Status |
|---|---|---|
|
{{ strtoupper(substr($booking->user->first_name ?? 'U', 0, 1)) }}
{{ $booking->user->first_name ?? 'N/A' }}Booking User |
{{ \Carbon\Carbon::parse($booking->appointment_date)->format('d M Y') }}
|
|
No Bookings FoundNo recent booking records available. |
||