@extends('layouts.admin') @section('title', 'Seat Allocations') @section('header-title', 'Seat Allocations - ' . $center->name) @section('content')

Seat Allocations: {{ $center->name }}

← Back to Center

Center: {{ $center->name }} | City: {{ $center->city }} | Capacity: {{ $center->tablet_capacity }}

@forelse($allocations as $allocation) @empty @endforelse
Seat # Roll Number Student Name Exam
{{ $allocation->seat_number }} {{ $allocation->student->roll_number ?? '-' }} {{ $allocation->student->name ?? '-' }} {{ $allocation->exam->name ?? '-' }}
No allocations found.
@endsection