@extends('layouts.app') @section('title', 'Room ' . $room->room_number) @section('content')
{{ $room->allocations->count() }} / {{ $room->bed_capacity }} beds occupied
| Bed No. | Student |
|---|---|
| Bed {{ $i }} | {{ $allocation?->student->full_name ?? '— Empty —' }} |