@component('components.breadcrumb', [
'links' => [
['name' => 'Question Bank', 'url' => ''],
['name' => 'Question Types', 'url' => route('question_types.index')],
['name' => 'Question Type Details', 'url' => ''],
],
])
@endcomponent
Back
@include('layouts.partials.toast')
- Name: {{ $questionType->name }}
- Type Path: {{ $questionType->type_path ?? null }}
-
Icon:
@if ($questionType->icon_path)
@else
@endif
- Description: {{ $questionType->description ?? null }}
- Active: {{ $questionType->is_active ? 'Active' : 'Deactivated' }}