@php $roomCount = $hotel->rooms->count(); $maxRooms = $hotel->maxRooms(); $canAddRoom = $hotel->canAddRoom(); $roomsLimitLabel = $hotel->plan?->roomsLimitLabel() ?? '—'; @endphp
@csrf @method('PUT') @error('rooms')
{{ $message }}
@enderror

Bulk edit. For quick add use Rooms.

Room Types

{{ $roomCount }} room {{ $roomCount === 1 ? 'type' : 'types' }} configured @if($maxRooms > 0) · Plan limit: {{ $roomCount }} / {{ $maxRooms }} @else · {{ $roomsLimitLabel }} @endif

@if(! $canAddRoom)
You have reached the maximum number of room types allowed on your plan ({{ $maxRooms }}).
@endif
@forelse($hotel->rooms as $index => $room) @include('hotel.settings.partials._room-row', ['index' => $index, 'room' => $room]) @empty @endforelse
Enable Rank Name Description Rooms Occupancy
No room types yet. Click Add Room to create one.
@push('styles') @endpush @push('scripts') @endpush