@extends('layouts.app') @section('title', 'Hostel Rooms list') @include('admin.components.toster') @section('content')
@foreach ($hostelrooms as $item) @endforeach
# Name Seat Hostel Hostel Type Action
{{ $loop->iteration }} {{ $item->name }} {{ $item->seat }} {{ optional($item->hostel)->name }} {{ optional($item->hostel->hosteltype)->name }}
@endsection @include('admin.components.tosterjs') @push('delete')
@csrf @method('delete')
@endpush