@extends('layouts.main_dashboard.app') @php($routePrefix = auth()->user()?->usesStaffPortal() ? 'teacher' : 'admin') @section('title', __('dashboard.My Created Questions')) @section('styles') @endsection @section('content') @include('admin.questions._bank_dashboard', [ 'pageTitle' => app()->getLocale() === 'ar' ? 'بنك أسئلة المعلم' : 'Teacher Question Bank', 'pageHeading' => app()->getLocale() === 'ar' ? 'أسئلتي المنشأة' : 'My Created Questions', 'pageDescription' => app()->getLocale() === 'ar' ? 'ركز على الأسئلة التي أنشأتها بنفسك، راقب توزيعها بين المواد والدروس، وطوّر بنكك الشخصي باستمرار.' : 'Focus on the questions you created yourself, monitor how they are spread across subjects and lessons, and keep building your personal bank.', 'routePrefix' => $routePrefix, 'indexRoute' => $routePrefix . '.questions.my-created', 'createRoute' => $routePrefix . '.questions.create', 'showTeacherFilter' => false, 'bankView' => 'teacher_owned', ]) @endsection