@extends('website.layout.master_auth') @section('title', 'الرئيسية') @section('content')
Revision session
{{-- Date completed : 06/10/22 --}}
Psag 1 of 10
@if(isset($category))
{{$category->name}}
@endif
@foreach($questions as $question) @php $userAnswer = $question->userAnswers()->where('user_id',auth()->user()->id)->first(); @endphp @if((!empty($userAnswer)) &&$userAnswer->is_correct ==1)
{!! $question->question !!}
{!! $question->short_answer !!}
@elseif((!empty($userAnswer)) &&$userAnswer->is_correct ==0)
{!! $question->question !!}
{!! $question->short_answer !!}
@else
{!! $question->question !!}
{!! $question->short_answer !!}
@endif @endforeach
@endsection