@extends('admin.layouts.master') @section('title') Quiz Management | @endsection @section('content')

Quiz List

@if (session('success'))
{{ session('success') }}
@endif @forelse ($records as $quiz) @empty @endforelse
# Id Module Name/ID Quiz Title Description Can Access Status Action
{{ $quiz->id }} {{ $quiz->module->module_name ?? '--' }} - {{ $quiz->module->id ?? '--' }} {{ $quiz->name }} {{ $quiz->description }} {{ $quiz->is_paid ? 'Yes' : 'No' }} @if ($quiz->status == 1) Active @else Inactive @endif
@csrf @if ($errors->any()) @endif @method('DELETE')
No data found
@endsection