intelligent-exam-generation.blade.php 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. <div>
  2. @push('styles')
  3. <style>
  4. .exam-card {
  5. transition: all 0.3s ease;
  6. }
  7. .exam-card:hover {
  8. transform: translateY(-2px);
  9. box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  10. }
  11. .skill-tag {
  12. display: inline-block;
  13. padding: 4px 12px;
  14. margin: 4px;
  15. background: #e0f2fe;
  16. color: #0369a1;
  17. border-radius: 12px;
  18. font-size: 12px;
  19. }
  20. .difficulty-indicator {
  21. width: 100%;
  22. height: 8px;
  23. border-radius: 4px;
  24. overflow: hidden;
  25. }
  26. .difficulty-easy { background: #86efac; }
  27. .difficulty-medium { background: #fde047; }
  28. .difficulty-hard { background: #fca5a5; }
  29. </style>
  30. @endpush
  31. <div class="space-y-6">
  32. <!-- 页面标题和操作 -->
  33. <div class="flex justify-between items-center">
  34. <div>
  35. <h2 class="text-2xl font-bold text-gray-900">智能出卷系统</h2>
  36. <p class="mt-1 text-sm text-gray-500">
  37. 基于知识点掌握度和技能依赖关系,智能生成个性化试卷
  38. </p>
  39. </div>
  40. <div class="flex gap-3">
  41. button
  42. color="gray"
  43. wire:click="resetForm"
  44. >
  45. 重置
  46. /button>
  47. </div>
  48. </div>
  49. <!-- 主要内容区 -->
  50. <div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
  51. <!-- 左侧:配置表单 -->
  52. <div class="lg:col-span-2 space-y-6">
  53. <!-- 基本信息 -->
  54. <div class="bg-white p-6 rounded-lg border shadow-sm" class="exam-card">
  55. <x-slot name="header">
  56. <div class="flex items-center gap-3">
  57. <div class="w-10 h-10 bg-blue-100 rounded-lg flex items-center justify-center">
  58. <x-heroicon-o-document-text class="w-6 h-6 text-blue-600" />
  59. </div>
  60. <div>
  61. <h3 class="text-lg font-semibold text-gray-900">基本信息</h3>
  62. <p class="text-sm text-gray-500">设置试卷名称、难度和题目数量</p>
  63. </div>
  64. </div>
  65. </x-slot>
  66. <div class="space-y-4">
  67. <input
  68. wire:model="paperName"
  69. label="试卷名称"
  70. placeholder="例如:因式分解专项练习(基础版)"
  71. required
  72. />
  73. <textarea
  74. wire:model="paperDescription"
  75. label="试卷描述"
  76. placeholder="描述本试卷的特点、适用对象等(可选)"
  77. rows="3"
  78. />
  79. <div class="grid grid-cols-3 gap-4">
  80. <div class="col-span-2">
  81. <div class="text-sm font-medium text-gray-700 mb-2">难度选择(可多选)</div>
  82. <div class="flex flex-wrap gap-3">
  83. @foreach(['基础','中等','拔高'] as $level)
  84. <label class="inline-flex items-center gap-2 text-sm text-gray-700">
  85. <input type="checkbox"
  86. wire:model="selectedDifficultyLevels"
  87. value="{{ $level }}"
  88. class="rounded border-gray-300 text-indigo-600 focus:ring-indigo-500">
  89. <span>{{ $level }}</span>
  90. </label>
  91. @endforeach
  92. </div>
  93. </div>
  94. <input
  95. wire:model="totalQuestions"
  96. type="number"
  97. label="题目数量"
  98. min="5"
  99. max="100"
  100. required
  101. />
  102. <input
  103. wire:model="totalScore"
  104. type="number"
  105. label="总分"
  106. min="0"
  107. max="200"
  108. />
  109. </div>
  110. </div>
  111. </div>
  112. <!-- 知识点选择 -->
  113. <div class="bg-white p-6 rounded-lg border shadow-sm" class="exam-card">
  114. <x-slot name="header">
  115. <div class="flex items-center justify-between">
  116. <div class="flex items-center gap-3">
  117. <div class="w-10 h-10 bg-green-100 rounded-lg flex items-center justify-center">
  118. <x-heroicon-o-academic-cap class="w-6 h-6 text-green-600" />
  119. </div>
  120. <div>
  121. <h3 class="text-lg font-semibold text-gray-900">知识点选择</h3>
  122. <p class="text-sm text-gray-500">选择要考查的知识点(可多选)</p>
  123. </div>
  124. </div>
  125. <div class="text-sm text-gray-500">
  126. 已选择: {{ count($selectedKpCodes) }} 个
  127. </div>
  128. </div>
  129. </x-slot>
  130. <div class="space-y-3">
  131. <div class="grid grid-cols-1 md:grid-cols-2 gap-3 max-h-64 overflow-y-auto">
  132. @foreach($this->knowledgePoints as $kp)
  133. <label class="flex items-start gap-3 p-3 border rounded-lg hover:bg-gray-50 cursor-pointer">
  134. <input type="checkbox"
  135. wire:model="selectedKpCodes"
  136. value="{{ $kp['kp_code'] }}"
  137. class="mt-1"
  138. />
  139. <div class="flex-1">
  140. <div class="font-medium text-gray-900">{{ $kp['cn_name'] ?? $kp['kp_code'] }}</div>
  141. @if(!empty($kp['description']))
  142. <div class="text-sm text-gray-500 mt-1">{{ Str::limit($kp['description'], 80) }}</div>
  143. @endif
  144. <div class="flex items-center gap-2 mt-2">
  145. <span class="text-xs px-2 py-0.5 bg-blue-100 text-blue-700 rounded">
  146. {{ $kp['kp_code'] }}
  147. </span>
  148. @if(!empty($kp['level']))
  149. <span class="text-xs px-2 py-0.5 bg-gray-100 text-gray-700 rounded">
  150. Level {{ $kp['level'] }}
  151. </span>
  152. @endif
  153. </div>
  154. </div>
  155. </label>
  156. @endforeach
  157. </div>
  158. </div>
  159. </div>
  160. <!-- 技能点选择 -->
  161. @if(count($this->skills) > 0)
  162. <div class="bg-white p-6 rounded-lg border shadow-sm" class="exam-card">
  163. <x-slot name="header">
  164. <div class="flex items-center justify-between">
  165. <div class="flex items-center gap-3">
  166. <div class="w-10 h-10 bg-purple-100 rounded-lg flex items-center justify-center">
  167. <x-heroicon-o-adjustments-horizontal class="w-6 h-6 text-purple-600" />
  168. </div>
  169. <div>
  170. <h3 class="text-lg font-semibold text-gray-900">技能点选择</h3>
  171. <p class="text-sm text-gray-500">根据知识点自动获取相关技能点</p>
  172. </div>
  173. </div>
  174. </div>
  175. </x-slot>
  176. <div class="space-y-3">
  177. <div class="flex flex-wrap gap-2">
  178. @foreach($this->skills as $skill)
  179. <label class="skill-tag cursor-pointer">
  180. <input type="checkbox"
  181. wire:model="selectedSkills"
  182. value="{{ $skill['skill_name'] }}"
  183. class="sr-only"
  184. />
  185. {{ $skill['skill_name'] }}
  186. </label>
  187. @endforeach
  188. </div>
  189. </div>
  190. </div>
  191. @endif
  192. <!-- 题型配比 -->
  193. <div class="bg-white p-6 rounded-lg border shadow-sm" class="exam-card">
  194. <x-slot name="header">
  195. <div class="flex items-center gap-3">
  196. <div class="w-10 h-10 bg-yellow-100 rounded-lg flex items-center justify-center">
  197. <x-heroicon-o-chart-pie class="w-6 h-6 text-yellow-600" />
  198. </div>
  199. <div>
  200. <h3 class="text-lg font-semibold text-gray-900">题型配比</h3>
  201. <p class="text-sm text-gray-500">设置各类题型的比例(总和为100%)</p>
  202. </div>
  203. </div>
  204. </x-slot>
  205. <div class="space-y-3">
  206. <div class="flex items-center gap-2 text-xs text-gray-600">
  207. 快捷配比:
  208. <button wire:click="applyRatioPreset('4-2-4')" type="button" class="px-2 py-1 border rounded hover:bg-gray-100">4:2:4</button>
  209. <button wire:click="applyRatioPreset('5-2-3')" type="button" class="px-2 py-1 border rounded hover:bg-gray-100">5:2:3</button>
  210. <span class="ml-2 text-gray-400">(选择题/填空题/解答题)</span>
  211. </div>
  212. @foreach($questionTypeRatio as $type => $percentage)
  213. <div class="flex items-center gap-4">
  214. <div class="w-24 text-sm font-medium text-gray-700">{{ $type }}</div>
  215. <div class="flex-1">
  216. <input
  217. type="range"
  218. min="0"
  219. max="100"
  220. wire:model="questionTypeRatio.{{ $type }}"
  221. class="w-full"
  222. />
  223. </div>
  224. <div class="w-16 text-sm text-gray-600">{{ $percentage }}%</div>
  225. </div>
  226. @endforeach
  227. <div class="text-xs text-gray-500">
  228. 总计: {{ array_sum($questionTypeRatio) }}%
  229. @if(array_sum($questionTypeRatio) !== 100)
  230. <span class="text-red-500 ml-2">(应为100%)</span>
  231. @endif
  232. </div>
  233. </div>
  234. </div>
  235. <!-- 难度配比 -->
  236. <div class="bg-white p-6 rounded-lg border shadow-sm" class="exam-card">
  237. <x-slot name="header">
  238. <div class="flex items-center gap-3">
  239. <div class="w-10 h-10 bg-indigo-100 rounded-lg flex items-center justify-center">
  240. <x-heroicon-o-signal class="w-6 h-6 text-indigo-600" />
  241. </div>
  242. <div>
  243. <h3 class="text-lg font-semibold text-gray-900">难度配比</h3>
  244. <p class="text-sm text-gray-500">设置各难度题目的比例</p>
  245. </div>
  246. </div>
  247. </x-slot>
  248. <div class="space-y-3">
  249. <div class="flex flex-wrap gap-3 text-sm text-gray-700">
  250. @foreach(['基础','中等','拔高'] as $level)
  251. <label class="inline-flex items-center gap-2">
  252. <input type="checkbox"
  253. wire:model="selectedDifficultyLevels"
  254. value="{{ $level }}"
  255. class="rounded border-gray-300 text-indigo-600 focus:ring-indigo-500">
  256. <span>{{ $level }}</span>
  257. </label>
  258. @endforeach
  259. </div>
  260. <div class="text-xs text-gray-500 mt-2">可多选,未选时默认全选。</div>
  261. </div>
  262. </div>
  263. </div>
  264. <!-- 右侧:操作面板 -->
  265. <div class="space-y-6">
  266. <!-- 学生选择(可选) -->
  267. <div class="bg-white p-6 rounded-lg border shadow-sm" class="exam-card">
  268. <x-slot name="header">
  269. <div class="flex items-center gap-3">
  270. <div class="w-10 h-10 bg-pink-100 rounded-lg flex items-center justify-center">
  271. <x-heroicon-o-user class="w-6 h-6 text-pink-600" />
  272. </div>
  273. <div>
  274. <h3 class="text-lg font-semibold text-gray-900">个性化设置</h3>
  275. <p class="text-sm text-gray-500">根据学生情况定制</p>
  276. </div>
  277. </div>
  278. </x-slot>
  279. <div class="space-y-4">
  280. <select
  281. wire:model="selectedStudentId"
  282. label="选择学生(可选)"
  283. placeholder="不指定则生成通用试卷"
  284. >
  285. <option value="">-- 不指定 --</option>
  286. @foreach($this->students as $student)
  287. <option value="{{ $student['student_id'] }}">
  288. {{ $student['name'] ?? $student['student_id'] }}
  289. </option>
  290. @endforeach
  291. /select>
  292. <label class="flex items-start gap-3">
  293. <input type="checkbox"
  294. wire:model="filterByStudentWeakness"
  295. wire:click="$refresh"
  296. />
  297. <div>
  298. <div class="text-sm font-medium text-gray-900">基于学生薄弱点</div>
  299. <div class="text-xs text-gray-500">
  300. 根据学生历史答题数据,自动筛选其薄弱知识点
  301. </div>
  302. </div>
  303. </label>
  304. @if(count($this->studentWeaknesses) > 0)
  305. <div class="mt-4 p-3 bg-amber-50 rounded-lg">
  306. <div class="text-sm font-medium text-amber-800 mb-2">检测到学生的薄弱点:</div>
  307. <div class="space-y-1">
  308. @foreach($this->studentWeaknesses as $weakness)
  309. <div class="text-xs text-amber-700 flex items-center gap-2">
  310. <span>{{ $weakness['kp_name'] ?? $weakness['kp_code'] }}</span>
  311. <span class="text-amber-600">
  312. (掌握度: {{ number_format($weakness['mastery'] * 100, 1) }}%)
  313. </span>
  314. </div>
  315. @endforeach
  316. </div>
  317. </div>
  318. @endif
  319. </div>
  320. </div>
  321. <!-- 生成按钮 -->
  322. <div class="bg-white p-6 rounded-lg border shadow-sm">
  323. <div class="space-y-4">
  324. button
  325. wire:click="generateExam"
  326. color="primary"
  327. class="w-full"
  328. size="lg"
  329. :disabled="$isGenerating"
  330. >
  331. @if($isGenerating)
  332. <svg class="animate-spin -ml-1 mr-3 h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
  333. <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  334. <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  335. </svg>
  336. 生成中...
  337. @else
  338. <x-heroicon-m-sparkles class="w-5 h-5 mr-2" />
  339. 智能生成试卷
  340. @endif
  341. /button>
  342. @if($generatedPaperId)
  343. button
  344. wire:click="exportToPdf"
  345. color="success"
  346. class="w-full"
  347. size="lg"
  348. >
  349. <x-heroicon-m-arrow-down-tray class="w-5 h-5 mr-2" />
  350. 导出PDF
  351. /button>
  352. @endif
  353. @if(!empty($generatedQuestions))
  354. <div class="mt-4 p-4 bg-green-50 rounded-lg">
  355. <div class="flex items-center gap-2 text-green-800">
  356. <x-heroicon-o-check-circle class="w-5 h-5" />
  357. <div class="font-medium">生成成功</div>
  358. </div>
  359. <div class="mt-2 text-sm text-green-700">
  360. 已生成试卷ID: <span class="font-mono">{{ $generatedPaperId }}</span>
  361. </div>
  362. <div class="mt-1 text-sm text-green-700">
  363. 题目数量: {{ count($generatedQuestions) }} 题
  364. </div>
  365. </div>
  366. @endif
  367. </div>
  368. </div>
  369. </div>
  370. </div>
  371. <!-- 生成的试卷预览 -->
  372. @if(!empty($generatedQuestions))
  373. <div class="bg-white p-6 rounded-lg border shadow-sm" class="mt-6">
  374. <x-slot name="header">
  375. <div class="flex items-center gap-3">
  376. <div class="w-10 h-10 bg-emerald-100 rounded-lg flex items-center justify-center">
  377. <x-heroicon-o-document-magnifying-glass class="w-6 h-6 text-emerald-600" />
  378. </div>
  379. <div>
  380. <h3 class="text-lg font-semibold text-gray-900">试卷预览</h3>
  381. <p class="text-sm text-gray-500">生成的题目列表</p>
  382. </div>
  383. </div>
  384. </x-slot>
  385. <div class="space-y-4">
  386. @foreach($generatedQuestions as $index => $question)
  387. @php
  388. $questionType = $question['question_type'] ?? ($question['type'] ?? '解答题');
  389. $isChoice = ($questionType === 'choice' || $questionType === '选择题');
  390. $options = $question['options'] ?? [];
  391. // 如果选项不在单独的字段中,尝试从题干中解析选项
  392. if ($isChoice && empty($options)) {
  393. $stem = $question['stem'] ?? '';
  394. preg_match_all('/([A-D])[\.\、\:]\s*(.+?)(?=[A-D][\.\、\:]|$)/', $stem, $matches);
  395. if (!empty($matches[1]) && !empty($matches[2])) {
  396. $parsedOptions = [];
  397. for ($i = 0; $i < count($matches[1]); $i++) {
  398. $parsedOptions[$matches[1][$i]] = trim($matches[2][$i]);
  399. }
  400. $options = $parsedOptions;
  401. }
  402. }
  403. // 确保有4个选项(必须显示A、B、C、D)
  404. if ($isChoice) {
  405. $standardOptions = ['A', 'B', 'C', 'D'];
  406. $fullOptions = [];
  407. $optionIndex = 0;
  408. foreach ($standardOptions as $key) {
  409. // 检查键值形式 (A, B, C, D)
  410. if (isset($options[$key]) && !empty($options[$key])) {
  411. $fullOptions[$key] = $options[$key];
  412. $optionIndex++;
  413. }
  414. // 检查数组索引形式 (0, 1, 2, 3)
  415. elseif (is_array($options) && isset($options[$optionIndex]) && !empty($options[$optionIndex])) {
  416. $fullOptions[$key] = $options[$optionIndex];
  417. $optionIndex++;
  418. }
  419. // 如果没有值,补充占位符
  420. else {
  421. // 根据选项字母生成占位符文本
  422. $placeholders = [
  423. 'A' => '(待补充选项A)',
  424. 'B' => '(待补充选项B)',
  425. 'C' => '(待补充选项C)',
  426. 'D' => '(待补充选项D)'
  427. ];
  428. $fullOptions[$key] = $placeholders[$key];
  429. }
  430. }
  431. $options = $fullOptions;
  432. }
  433. @endphp
  434. <div class="border rounded-lg p-4">
  435. <div class="flex items-start gap-4">
  436. <div class="flex-shrink-0 w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-700 font-semibold">
  437. {{ $index + 1 }}
  438. </div>
  439. <div class="flex-1">
  440. <div class="flex items-center gap-2 mb-2">
  441. <span class="text-sm px-2 py-0.5 bg-gray-100 text-gray-700 rounded">
  442. {{ $question['kp_code'] }}
  443. </span>
  444. <span class="text-sm px-2 py-0.5 bg-blue-100 text-blue-700 rounded">
  445. {{ $question['question_type'] ?? '解答题' }}
  446. </span>
  447. @if(isset($question['difficulty']))
  448. <span class="text-sm px-2 py-0.5
  449. @if($question['difficulty'] <= 0.3) bg-green-100 text-green-700
  450. @elseif($question['difficulty'] <= 0.7) bg-yellow-100 text-yellow-700
  451. @else bg-red-100 text-red-700
  452. @endif
  453. rounded">
  454. {{ $question['difficulty'] <= 0.3 ? '基础' : ($question['difficulty'] <= 0.7 ? '中等' : '拔高') }}
  455. </span>
  456. @endif
  457. </div>
  458. <div class="prose prose-sm max-w-none text-gray-900">
  459. {!! $question['stem'] !!}
  460. </div>
  461. {{-- 选择题选项展示 --}}
  462. @if($isChoice && !empty($options))
  463. @php
  464. // 判断选项长度,决定布局
  465. $maxOptionLength = 0;
  466. foreach ($options as $key => $option) {
  467. $text = is_string($option) ? strip_tags($option) : (string)$option;
  468. $length = mb_strlen($text);
  469. $maxOptionLength = max($maxOptionLength, $length);
  470. }
  471. // 如果最长选项不超过20个字符,可以考虑一行显示
  472. $shouldDisplayInline = $maxOptionLength <= 20;
  473. @endphp
  474. <div class="mt-3 space-y-2">
  475. @if($shouldDisplayInline)
  476. {{-- 短选项:一行显示 --}}
  477. <div class="grid grid-cols-2 gap-3">
  478. @foreach($options as $key => $option)
  479. <div class="flex items-start gap-2 p-2 bg-gray-50 rounded
  480. {{ strpos($option, '待补充') !== false ? 'opacity-60 border border-dashed border-gray-300' : '' }}">
  481. <span class="flex-shrink-0 w-6 h-6 bg-blue-600 text-white text-sm rounded-full flex items-center justify-center font-semibold">
  482. {{ $key }}
  483. </span>
  484. <span class="text-sm text-gray-900 break-words">
  485. {!! $option !!}
  486. </span>
  487. </div>
  488. @endforeach
  489. </div>
  490. @else
  491. {{-- 长选项:单独显示 --}}
  492. <div class="space-y-2">
  493. @foreach($options as $key => $option)
  494. <div class="flex items-start gap-3 p-3 bg-gray-50 rounded-lg hover:bg-gray-100 transition-colors
  495. {{ strpos($option, '待补充') !== false ? 'opacity-60 border border-dashed border-gray-300' : '' }}">
  496. <span class="flex-shrink-0 w-7 h-7 bg-blue-600 text-white text-sm rounded-full flex items-center justify-center font-semibold">
  497. {{ $key }}
  498. </span>
  499. <span class="text-sm text-gray-900 leading-relaxed">
  500. {!! $option !!}
  501. </span>
  502. </div>
  503. @endforeach
  504. </div>
  505. @endif
  506. </div>
  507. @endif
  508. </div>
  509. </div>
  510. </div>
  511. @endforeach
  512. </div>
  513. {{-- 参考答案部分 --}}
  514. <div class="mt-8 bg-white p-6 rounded-lg border shadow-sm border-emerald-200">
  515. <x-slot name="header">
  516. <div class="flex items-center gap-3">
  517. <div class="w-10 h-10 bg-emerald-100 rounded-lg flex items-center justify-center">
  518. <x-heroicon-o-document-text class="w-6 h-6 text-emerald-600" />
  519. </div>
  520. <div>
  521. <h3 class="text-xl font-bold text-gray-900">参考答案</h3>
  522. <p class="text-sm text-gray-500">{{ $generatedPaperId ?: ($paperName ?: '智能生成试卷') }}</p>
  523. </div>
  524. </div>
  525. </x-slot>
  526. <div class="space-y-4">
  527. @foreach($generatedQuestions as $index => $question)
  528. @if(!empty($question['answer']))
  529. <div class="flex items-start gap-4 p-4 bg-emerald-50 rounded-lg">
  530. <div class="flex-shrink-0 w-10 h-10 bg-emerald-600 text-white rounded-full flex items-center justify-center font-semibold">
  531. {{ $index + 1 }}
  532. </div>
  533. <div class="flex-1">
  534. <div class="text-sm text-gray-600 mb-1">
  535. <strong>{{ $question['question_type'] ?? '题目' }} · {{ $question['kp_code'] ?? '' }}</strong>
  536. </div>
  537. <div class="text-sm text-emerald-700 font-medium">
  538. <strong>答案:</strong> {!! $question['answer'] !!}
  539. </div>
  540. @if(isset($question['score']))
  541. <div class="text-xs text-gray-500 mt-1">
  542. 分值:{{ $question['score'] }}分
  543. </div>
  544. @endif
  545. </div>
  546. </div>
  547. @endif
  548. @endforeach
  549. </div>
  550. </div>
  551. </div>
  552. @endif
  553. </div>
  554. </x-filament-pages::page>