@extends('layouts.app') @section('title', 'Hostel Buildings') @section('content')

Hostel Buildings

@forelse($hostels as $hostel) @empty @endforelse
NameGenderRoomsWarden
{{ $hostel->name }} {{ $hostel->gender }} {{ $hostel->rooms_count }} {{ $hostel->warden->user->name ?? 'Not assigned' }}
No buildings yet.
@endsection