@extends('layouts.admin.app') @section('content')
Topic List add

@if(Session::has('success'))
{{ Session::get('success') }}

demo test

@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
@foreach($topics as $topic) @endforeach
Topic Name Status Action
{{ $topic->name }}
Active @else bg-gradient-danger">Inactive @endif
@csrf @method('DELETE')
    {{ $topics->links() }}
@include('layouts.admin.footer')
@endsection