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