@extends('layouts.main_dashboard.app') @php($routePrefix = auth()->user()?->usesStaffPortal() ? 'teacher' : 'admin') @section('title', __('dashboard.Questions of Taught Subjects')) @section('content') @include('admin.questions._bank_dashboard', [ 'pageTitle' => app()->getLocale() === 'ar' ? 'بنك أسئلة المعلم' : 'Teacher Question Bank', 'pageHeading' => app()->getLocale() === 'ar' ? 'بنك الأسئلة' : 'Question Bank', 'pageDescription' => app()->getLocale() === 'ar' ? 'يتكون بنك الأسئلة هنا من جزأين واضحين: إحصائيات سريعة، ثم عرض أسئلة المواد المتاحة لك مع إمكانية حصر العرض على أسئلتك المنشأة.' : 'A practical workspace to review questions across the subjects you teach, filter them quickly, and pick what fits quizzes and assignments.', 'routePrefix' => $routePrefix, 'indexRoute' => $routePrefix . '.questions.of_taught_subjects', 'createRoute' => $routePrefix . '.questions.create', 'showTeacherFilter' => false, 'bankView' => 'teacher_scope', ]) @endsection