@extends('emails.layout') @section('title', 'New Reservation Request') @section('header-subtitle', 'Reservation Management') @section('content')
| Reservation ID | #{{ $reservation->id }} |
|---|---|
| Guest Name | {{ $reservation->customer_name }} |
| Phone | {{ $reservation->customer_phone ?? 'Not provided' }} |
| {{ $reservation->customer_email ?? 'Not provided' }} | |
| Date | {{ \Carbon\Carbon::parse($reservation->reservation_date)->format('l, F j, Y') }} |
| Time | {{ \Carbon\Carbon::parse($reservation->reservation_time)->format('g:i A') }} |
| Party Size | {{ $reservation->party_size }} {{ $reservation->party_size > 1 ? 'guests' : 'guest' }} |
| Status | {{ ucfirst($reservation->status ?? 'Pending') }} |
| Special Requests | {{ $reservation->special_requests }} |
| Requested At | {{ $reservation->created_at->format('M d, Y h:i A') }} |
Please log in to your dashboard to review and manage this reservation request.
@endsection