@extends('layouts.app') @section('content')

📚 Classrooms List

+ Create New Classroom
@if(session('success')) @endif @if($classrooms->isEmpty())

No classrooms found.

@else
@foreach($classrooms as $classroom) @endforeach
# County Sub-County Center Class Number Created At Actions
{{ $loop->iteration }} {{ $classroom->county->name ?? 'N/A' }} {{ $classroom->subCounty->name ?? 'N/A' }} {{ $classroom->center->name ?? 'N/A' }} {{ $classroom->class_number }} {{ $classroom->created_at->format('Y-m-d') }} Edit
@csrf @method('DELETE')
{{-- Pagination --}}
{{ $classrooms->links() }}
@endif
{{-- Custom Styling --}} @endsection