@extends('layouts.admin')
@section('title', 'Section Management')
@section('page-title', 'Section Management')
@section('content')
Academics / Section Management
| ID |
Section Name |
Created At |
Actions |
@forelse($sections as $section)
| #{{ $section->id }} |
{{ $section->name }}
|
{{ $section->created_at->format('d M Y') }} |
|
@empty
| No sections found. Click "Add Section" to create one. |
@endforelse
@endsection