@extends('layouts.app') @section('content')

Topic List

@foreach ($topics as $key => $topic) @endforeach
# Image Name Status Actions
{{ $key + 1 }} @if ($topic->image == null)
@else
@endif
{{ $topic->name }}
@if ($topic->status == 0) id }} data-status="1" data-action="{{ route('topic.change-quiz-status') }}">Unpublished @else id }} data-status="0" data-action="{{ route('topic.change-quiz-status') }}">Published @endif
@endsection @push('script') @endpush