@extends('layouts.app') @section('content')
@component('components.breadcrumb', [ 'links' => [['name' => 'Question Bank', 'url' => ''], ['name' => 'Question Types', 'url' => '']], ]) @endcomponent {{-- --}}
@include('layouts.partials.toast')
@foreach ($questionTypes as $questionType) @endforeach
Name Icon Description Status Actions
{{ $questionType->name }} @if ($questionType->icon_path) {{ $questionType->name }} Icon @else {{ $questionType->name }} Icon @endif {{ $questionType->description ?? null }} {{ $questionType->is_active ? 'Active' : 'Deactivated' }} {{-- --}}
ROWS PER PAGE:
{{ $questionTypes->links('pagination::bootstrap-5') }}
@include('dashboard.question_types.create') @endsection