@extends('layouts.master')
@section('title', 'Rooms')
@section('content')
Room Management
| Room |
Total Seats |
Occupied |
Available |
Action |
@foreach($rooms as $room)
@php
$occupied = $room->seats->where('status', 'occupied')->count();
$available = $room->seats->where('status', 'available')->count();
@endphp
| {{ $room->room_number }} |
{{ $room->total_seats }} |
{{ $occupied }}
|
{{ $available }}
|
|
@endforeach
@endsection