@extends('layouts/contentNavbarLayout') @section('title', 'Room: ' . $room->name) @section('content')

Room: {{ $room->name }}

Edit
@csrf @method('DELETE')
Back to list
Room
{{ $room->name }}
Floor
{{ $room->floor->name }}
Capacity (max beds)
{{ $room->capacity ?: 'No limit' }}
Beds
{{ $room->beds->count() }}
@if($room->beds->isNotEmpty())
Beds in this room
    @foreach($room->beds as $bed)
  • {{ $bed->name }} @if($bed->status === \App\Models\Bed::STATUS_AVAILABLE) Available @else Occupied @endif
  • @endforeach
@endif
@endsection