@include('partials.head')
{{--
Loading...
--}} @include('partials.sidebar')
@include('partials.header')
Question Analytics
{{-- --}} {{-- @foreach ($questions as $index => $question) --}} @if ($questions->isEmpty()) @else @foreach ($questions as $index => $quiz) {{-- --}} {{-- --}} @endforeach @endif
Sl No. Question Chapter Module Book ClassAction
No records found
{{ ($questions->currentPage() - 1) * $questions->perPage() + $index + 1 }}{{ $quiz->serial_number }} @if ($quiz->question) {{ $quiz->question->question }} @else - @endif @if ($quiz->question && $quiz->question->chapter) {{ $quiz->question->chapter->chapter_name }} @else - @endif @if ($quiz->question && $quiz->question->chapter && $quiz->question->chapter->module) {{ $quiz->question->chapter->module->module_name }} @else - @endif @if ($quiz->question && $quiz->question->chapter && $quiz->question->chapter->module && $quiz->question->chapter->module->book) {{ $quiz->question->chapter->module->book->book_name }} @else - @endif @if ($quiz->question && $quiz->question->chapter && $quiz->question->chapter->module && $quiz->question->chapter->module->book && $quiz->question->chapter->module->book->class) {{ $quiz->question->chapter->module->book->class->class_name }} @else - @endif
View
    {{-- Previous Page Link --}} @if ($questions->onFirstPage())
  • Previous
  • @else
  • Previous
  • @endif {{-- Pagination Elements --}} @foreach ($questions->getUrlRange(1, $questions->lastPage()) as $page => $url) @if ($page == $questions->currentPage())
  • {{ $page }}
  • @else
  • {{ $page }}
  • @endif @endforeach {{-- Next Page Link --}} @if ($questions->hasMorePages())
  • Next
  • @else
  • Next
  • @endif