@extends('admin.layouts.app') @section('title', 'Sections') @section('content')

Sections

{{-- Create Section --}}

Create New Section

@csrf
@error('name')

{{ $message }}

@enderror
{{-- Sections List --}}

All Sections

@forelse($sections as $section)
{{ $section->name }}
@if($section->description)
{{ $section->description }}
@endif
{{ $section->students_count }} student(s)
View Students
@csrf @method('DELETE')
@empty

No sections yet. Create one above.

@endforelse
@endsection