@extends('layouts.app') @section('title', 'Question Pool') @section('page-title', 'Question Pool') @section('breadcrumb', 'Products') @section('content')

Question Pool

Create and manage question pools

Create
@if(request('sort')) @endif
@if($questionPools->count())
@foreach($questionPools as $pool) @endforeach
Title Questions Status Created Actions
{{ $pool->title }} {{ $pool->questions_count }} {{ ucfirst($pool->status) }} {{ $pool->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ $questionPools->links() }}
@else

No results found

Create your first question pool to get started.

Create
@endif
@endsection