@extends('layouts.app') @section('title', 'topics Management') @section('content')

topics Management

Manage all topics in the system

Add New topic
@if(session('success'))
{{ session('success') }}
@endif

All topics

Total {{ $topics->count() }} topic(s)

@if($topics->count() > 0)
@foreach($topics as $topic) @endforeach
topic Name Actions
{{ $topic->name }}
topic ID: {{ $topic->id }}
Set questions Edit
@csrf @method('DELETE')
@else

No topics

Get started by creating your first topic.

@endif
@if(method_exists($topics, 'links'))
{{ $topics->links() }}
@endif
@endsection