@extends('theme.sarthi.master') @section('title') A1 Rankers Topic Tests @endsection @section('meta') @endsection @section('content')
@foreach($childcategory as $section) {{$section->title}}

@php $topictests=App\TopicviseTest::where('category', $catid)->where('subcategory', $subcatid)->where('childcategory', $section->id)->orderBy('id', 'ASC')->get(); @endphp @foreach($topictests as $tests) @endforeach
# Topic Action
1 {{$tests->title}} @php $attempttest=App\TopicShortResult::where('user_id', Auth::user()->id)->where('topic_id', $tests->id)->first(); @endphp @if(!isset($attempttest)) Take Test @endif @if(isset($attempttest)) @if($attempttest->status == 1) See Result @endif @endif
@endforeach

Newsletter

Testimonials

Quick contact

Submit

All Test


@foreach($test as $tests) @endif @endforeach
# Topic Date Status
1 {{$tests->title}} {{$tests->created_at}} @php $users=App\TopicQuizAnswer::where('topic_id', $tests->id)->where('user_id',Auth::user()->id)->first(); @endphp @if(!empty($users)) See Marksheet @else Start Test
@endsection