@extends('layouts.admin') @section('title', 'User Profile') @section('content')
{{ $user->email }}
@if($user->hasRole('admin')) Administrator @else Customer @endifPhone
{{ $user->phone ?? 'Not provided' }}
Address
{{ $user->address ?? 'Not provided' }}
Joined Date
{{ $user->created_at->format('F d, Y') }}
Total Bookings
Ref: {{ $booking->booking_reference }} • {{ $booking->total_people }} Pax
{{ $booking->formatted_total_amount }}
@php $statusClasses = [ 'pending' => 'text-yellow-600', 'confirmed' => 'text-green-600', 'cancelled' => 'text-red-600', ]; $class = $statusClasses[$booking->status] ?? 'text-gray-500'; @endphp{{ ucfirst($booking->status) }}
This user hasn't made any bookings yet.