@hotelSettings
Detailed information about the guest
{{ $guest->email }}
@if($guest->phone){{ $guest->phone }}
@endifDate of Birth
{{ $guest->date_of_birth ? $guest->date_of_birth->format('F d, Y') : 'Not provided' }}
Gender
{{ ucfirst($guest->gender) ?? 'Not provided' }}
Nationality
{{ $guest->nationality ?? 'Not provided' }}
Address
{{ $guest->address ?? 'Not provided' }}
City & Country
{{ $guest->city ?? 'Not provided' }}, {{ $guest->country ?? 'Not provided' }}
ID Type & Number
{{ ucfirst(str_replace('_', ' ', $guest->id_type)) ?? 'Not provided' }} @if($guest->id_number) - {{ $guest->id_number }} @endif
Loyalty Points
{{ $guest->loyalty_points ?? 0 }} points
{{ $guest->special_requests }}
{{ $guest->blacklist_reason }}
| Service | Scheduled | Status | Price | Actions |
|---|---|---|---|---|
|
{{ $request->service->name ?? 'Unknown Service' }}
@if($request->customer_notes)
{{ Str::limit($request->customer_notes, 50) }}
@endif
|
{{ $request->scheduled_at->format('M d, Y') }}
{{ $request->scheduled_at->format('h:i A') }}
|
@php $statusConfig = [ 'pending' => ['color' => 'yellow', 'icon' => 'clock'], 'in_progress' => ['color' => 'blue', 'icon' => 'spinner'], 'completed' => ['color' => 'green', 'icon' => 'check-circle'], 'cancelled' => ['color' => 'red', 'icon' => 'times-circle'] ]; $config = $statusConfig[$request->status] ?? ['color' => 'gray', 'icon' => 'circle']; @endphp {{ ucfirst(str_replace('_', ' ', $request->status)) }} @if($request->is_urgent) Urgent @endif |
UGX {{ number_format($request->total_price, 0) }}
|
View |
| Reservation ID | Room | Check-in | Check-out | Status |
|---|---|---|---|---|
| #{{ $reservation->id }} |
{{ $reservation->room->room_number }}
|
{{ $reservation->check_in->format('M d, Y') }} | {{ $reservation->check_out->format('M d, Y') }} | @php $statusConfig = [ 'confirmed' => ['color' => 'green', 'icon' => 'check-circle'], 'checked_in' => ['color' => 'blue', 'icon' => 'sign-in-alt'], 'checked_out' => ['color' => 'gray', 'icon' => 'sign-out-alt'], 'cancelled' => ['color' => 'red', 'icon' => 'times-circle'] ]; $config = $statusConfig[$reservation->status] ?? ['color' => 'gray', 'icon' => 'circle']; @endphp {{ ucfirst(str_replace('_', ' ', $reservation->status)) }} |
This guest hasn't made any reservations with us yet.