@extends('layouts.main') @section('content')
| Patient | Date | Status |
|---|---|---|
|
{{ strtoupper(substr(($booking->user->first_name ?? 'U'), 0, 1)) }}
{{ ($booking->user->first_name ?? '') . ' ' . ($booking->user->last_name ?? '') }}Booking Patient |
{{ \Carbon\Carbon::parse($booking->appointment_date)->format('d M Y') }}{{ \Carbon\Carbon::parse($booking->appointment_date)->format('l') }} |
@php $status = strtolower($booking->status); @endphp @if($status == 'confirmed') Confirmed @elseif($status == 'pending') Pending @elseif($status == 'completed') Completed @elseif($status == 'cancelled') Cancelled @else {{ ucfirst($booking->status) }} @endif |
No Bookings FoundBooking records are currently unavailable. |
||