@extends('admin.layouts.app') @section('title', 'Check-in Guest') @section('page-title', 'Check-in - ' . $booking->booking_number) @section('content')

Check-in Guest: {{ $booking->guest_name }}

Back

Booking #

{{ $booking->booking_number }}

Phone

{{ $booking->guest_phone }}

Check-in

{{ $booking->check_in_date->format('M d, Y') }}

Check-out

{{ $booking->check_out_date->format('M d, Y') }}

@csrf

Assign Room *

@if($availableRooms->isEmpty())

No available rooms. All rooms are currently occupied or under maintenance.

@endif
Cancel
@endsection