@extends('layouts.student') @section('title', 'Accommodation') @push('styles') @endpush @section('content')
Welcome to the student accommodation portal. Here, you can view your current room allocation and application status.
{{-- Accommodation Table --}}| # | Room Number | Campus | Block | Allocation Status | Check-In | Check-Out | Remarks |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $record->room_number ?? '-' }} | {{ $record->campus }} | {{ $record->block ?? '-' }} | {{ $record->allocation_status }} | {{ $record->check_in ? \Carbon\Carbon::parse($record->check_in)->format('Y-m-d') : '-' }} | {{ $record->check_out ? \Carbon\Carbon::parse($record->check_out)->format('Y-m-d') : '-' }} | {{ $record->remarks }} |
| No accommodation record found. | |||||||