@extends('dashboard.layouts.master') @section('css') @endsection @section('breadcrumb')

{{trans('labels.examForms')}}

@can('questions-create')
@csrf
@endcan
@endsection @section('content')
@foreach($data['forms'] as $examForm) @endforeach
{{trans('labels.id')}} {{trans('labels.title')}} {{trans('labels.degree')}} {{trans('labels.questions')}} {{trans('labels.difficulty_level')}} {{trans('labels.action')}}
{{$examForm->id}} {{$examForm->title}} {{$examForm->degree}}/{{$examForm->exam->degree}} {{$examForm->examQuestions->count()}} {{$examForm->difficulty_level}}% @can('questions-edit')
@csrf
@endcan @can('questions-delete') @if($examForm->exam->canDeleted()) @endif @endcan
@endsection @section('script') @endsection