@extends('admin/layouts.master') @section('title', 'Mock Test - Admin') @section('body')
@include('admin.message')


@foreach($topics as $topic) @endforeach
# Topic Course DURATION {{ __('adminstaticword.Marks') }} Add Question {{ __('adminstaticword.Action') }}
1 {{$topic->title}} @php $course=App\SubCategory::where('id', $topic->subcategory)->first(); @endphp @if(isset($course)) {{$course->title}} @endif {{$topic->duration}} Minutes {{$topic->per_q_mark}} @php $subject=App\ChildCategory::where('subcategory_id', $topic->subcategory)->get(); @endphp @foreach($subject as $subjects) {{$subjects->title}}

@endforeach
{{ csrf_field() }} {{ method_field('DELETE') }}
@endsection