@extends('theme.master') @section('title',"Show Report") @section('content')

@if ($auth)

{{ __('score card') }}


@php $correct = $mark*$topics->per_q_mark; @endphp
{{ __('Total Question') }} {{ __('Correct Questions') }} {{ __('Per Question Mark') }} {{ __('Total Marks') }}
{{$count_questions}} @php $mark = 0; $ca=0; $correct = collect(); @endphp @foreach ($ans as $answer) @php $mark++; $ca++; @endphp @endforeach @if ($answer->txt_approved == '1') {{$ca}} @else {{ __('Pending')}} @endif {{$topics->per_q_mark}} @if ($answer->txt_approved == '1') {{$correct}} @else {{ __('Pending')}} @endif

{{ __('ThankYou') }}

@if($topics->quiz_again == '1') {{ __('TryAgain') }} @endif {{ __('Back') }}
@endif

@endsection @section('custom-script') @endsection