@extends('layouts.admin') @section('content') @can('batch_create')
{{ trans('global.add') }} Quiz Topic
@endcan
Quiz Topic {{ trans('global.list') }}
@foreach($topics as $key => $topic) @endforeach
Topic Category Pass Percentage Created By  
{{$key+1}} {{ $topic->title}} {{ $topic->category->name}} {{ $topic->pass_percentage}} {{ $topic->user->name}} {{ trans('global.edit') }}
@endsection @section('scripts') @parent @endsection