@extends('layouts.admin') @section('title','Topics') @section('page-title','Topics') @section('content')
{{-- Add Topic Form --}}
Add New Topic
@csrf
@error('subject_id')
{{ $message }}
@enderror
@error('name')
{{ $message }}
@enderror
{{-- Topics List --}}
All Topics
{{ $topics->total() }} topics
@forelse($topics as $topic) @empty @endforelse
Topic Name Subject Questions Actions
{{ $topic->name }} {{ $topic->subject->code }} {{ $topic->subject->name }} {{ $topic->questions_count }}
{{-- Inline Edit via Modal --}}
@csrf @method('DELETE')
No topics yet. Add your first topic using the form.
@if($topics->hasPages()) @endif
{{-- Edit Topic Modal --}} @endsection @push('scripts') @endpush