@extends('layouts.app') @section('title', 'New Reservation') @section('page_title', 'New Reservation') @section('page_subtitle', 'Create a new guest reservation') @section('nav_reservations', 'bg-teal-50 text-teal-700 font-semibold') @section('content') @php $roomsByFloor = $rooms->groupBy('floor')->sortKeys(); $floorOpenInit = array_fill_keys($roomsByFloor->keys()->toArray(), true); @endphp
Please fix the following: