@extends('layouts.app') @section('title', '產生考卷 - ' . $exam->title) @section('content')
選擇要產生的考卷類型,下載 Word 檔案
{{ $exam->questions->count() }}
題目數
{{ $exam->questions->sum('points') ?: $exam->questions->count() }}
總分
{{ $aiCount }}/{{ $exam->questions->count() }}
已有 AI 詳解
純考卷,只有題目與選項,適合列印給學生作答。包含姓名欄、座號欄、答案欄。
在瀏覽器中開啟列印友好頁面,可直接儲存為 PDF。數學公式完美渲染。
{{ Str::limit($question->question_text, 120) }}
@if($question->options)