@extends('theme.sarthi.master') @section('title')
| # | 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 |
| # | 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 | @endif