@extends('emails.layouts.email') @section('title', 'Check-in Reminder - ' . $booking->booking_number) @section('header_title', '🏨 Check-in Tomorrow!') @section('content')

Dear {{ $guest->first_name }} {{ $guest->last_name }},

🎉 Your stay is just around the corner!
We're excited to welcome you tomorrow at {{ $property->name }}.

This is a friendly reminder that your check-in date is tomorrow. We have everything ready for your arrival!

Booking Number
{{ $booking->booking_number }}
Confirmed
Check-in Date {{ \Carbon\Carbon::parse($rooms->first()->checkin_date)->format('l, d M Y') }}
Check-out Date {{ \Carbon\Carbon::parse($rooms->first()->checkout_date)->format('l, d M Y') }}
Duration {{ $rooms->first()->total_nights }} Night(s)
Room {{ $rooms->first()->roomType->name ?? 'Room' }}
Guests {{ $rooms->sum('adults') }} Adult(s)@if($rooms->sum('children') > 0), {{ $rooms->sum('children') }} Child(ren)@endif

📋 Check-in Information
• Check-in time: 14:00 onwards
• Check-out time: Before 12:00
• Please bring a valid ID for check-in
• Early check-in may be available upon request

@if($property->street_address)

📍 Property Location

{{ $property->street_address }}
@if($property->city){{ $property->city }}@endif @if($property->state), {{ $property->state }}@endif @if($property->postal_code) {{ $property->postal_code }}@endif

@endif @if($booking->special_requests)

Your Special Requests

{{ $booking->special_requests }}

@endif

Safe travels! 🚗✈️

If you need to make any changes or have questions, please contact us as soon as possible.

@endsection