@extends('theme.master') @section('title', 'View Faculty Questions') @section('content') @include('admin.message') @if ($errors->any())
@endif

View All Questions and Answers

@foreach ($questions as $quiz) @endforeach
Id Question Options Correct Answer With Solution Action
{{ $quiz->id }}
{{ json_decode($quiz->question)->en }}
A: {{ html_entity_decode(strip_tags($quiz->a)) }}
B: {{ html_entity_decode(strip_tags($quiz->b)) }}
C: {{ html_entity_decode(strip_tags($quiz->c)) }}
D: {{ html_entity_decode(strip_tags($quiz->d)) }}
Correct Answer: {{ html_entity_decode(strip_tags($quiz->answer)) }}
Solution: {{ html_entity_decode(strip_tags($quiz->solution)) }}
{{ __('Edit') }}
@csrf @method('DELETE')
{{ $questions->links() }}
@endsection @section('custom-script') @endsection