@extends('layouts.admin') @section('title', 'Manage Topics') @section('content')

Manage Topics

+ Add New Topic
@if(session('success')) @endif
@forelse($topics as $topic) @empty @endforelse
Class Subject Topic Name Description Question Template Order Status Actions
{{ $topic->subject->classModel->name }} {{ $topic->subject->name }} {{ $topic->name }} {{ Str::limit($topic->description, 50) }} {{ $topic->question_template ?? 'Tell me about {name}' }} {{ $topic->order }} @if($topic->is_active) Active @else Inactive @endif Edit
@csrf @method('DELETE')
No topics found. Create one.
@endsection