@extends('user.layout') @section('content')
{{ __('Quizzes') . ' (' . $language->name . ' ' . __('Language') . ')' }}
@if (count($quizzes) == 0)

{{ __('NO QUIZ FOUND') . '!' }}

@else
@foreach ($quizzes as $quiz) @endforeach
{{ '#' }} {{ __('Question') }} {{ __('Actions') }}
{{ $loop->iteration }} {{ strlen($quiz->question) > 50 ? mb_substr($quiz->question, 0, 50, 'UTF-8') . '...' : $quiz->question }} {{ __('Edit') }}
@csrf
@endif
@endsection