@extends('theme.aone.master') @section('title') TCM Education Clone Test Series @endsection @section('meta') @endsection @section('content')

All Test


@foreach($test as $tests) @php $attempt=App\MockShortResult::where('topic_id', $tests->id)->where('user_id',Auth::user()->id)->where('childcat_id',0)->first(); @endphp @endforeach
# Test Name Time Status Score Resources Action
1. {{$tests->title}}-{{$tests->id}} {{$tests->duration}} min- @if(!empty($attempt)) @if($attempt->status == 2) Completed @endif @if($attempt->status == 1) In progress
{{ $attempt->create_date}}
@endif @else Not Attempted @endif
@if(!empty($attempt)) @if($attempt->status == 2) Score @endif @endif @if(!empty($attempt) && $attempt->status == 2) Report @endif @if(!empty($attempt) && $attempt->status == 1 ) Resume @endif @if(empty($attempt)) Start Test @endif
@endsection