@extends('layouts.app') @section('content')
@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) {{ $questionType->name }} Icon @else {{ $questionType->name }} Icon @endif
  • Description: {{ $questionType->description ?? null }}
  • Active: {{ $questionType->is_active ? 'Active' : 'Deactivated' }}
@endsection