@extends('layouts.master') @section('title', 'Rooms') @section('content')

Room Management

Add Room
@csrf
Room List
@foreach($rooms as $room) @php $occupied = $room->seats->where('status', 'occupied')->count(); $available = $room->seats->where('status', 'available')->count(); @endphp @endforeach
Room Total Seats Occupied Available Action
{{ $room->room_number }} {{ $room->total_seats }} {{ $occupied }} {{ $available }}
@csrf @method('DELETE')
@endsection