@extends('layouts.admin') @section('title', $roomType->name) @section('content') Edit
@csrf @method('DELETE')
Details

Base Rate: {{ number_format($roomType->base_rate, 2) }}

Occupancy: {{ $roomType->max_adults }} adults, {{ $roomType->max_children }} children (max {{ $roomType->max_occupants }})

Status:

@if($roomType->description)

{{ $roomType->description }}

@endif @if($roomType->amenities->isNotEmpty())

Amenities: {{ $roomType->amenities->pluck('name')->join(', ') }}

@endif
Rooms ({{ $roomType->rooms->count() }})
@foreach($roomType->rooms as $room)@endforeach
#FloorStatus
{{ $room->number }}{{ $room->floor ?? '—' }}
@endsection