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

Hostel Students List

@if(session('success'))
{{ session('success') }}
@endif @foreach($hostels as $key => $hostel) @endforeach
# Student Name Reg ID Room Seat Join Date Action
{{ $key + 1 }} {{ optional($hostel->student->user)->name ?? 'N/A' }} {{ $hostel->student->reg_id }} {{ $hostel->room->room_number }} {{ $hostel->seat->seat_number }} {{ \Carbon\Carbon::parse($hostel->join_date)->format('d-m-Y') }}
@csrf @method('DELETE')
@endsection