@extends('layouts.app') @section('title', '我的考試') @section('content')
| 考試名稱 | 考科 | 分類 | 題數 | 公開範圍 | 學校/班級 | 操作 |
|---|---|---|---|---|---|---|
| {{ $exam->title }} @if($exam->year)({{ $exam->year }})@endif | {{ $exam->subject->name ?? '-' }} | {{ $exam->examCategory->name ?? '-' }} | {{ $exam->questions_count }} | @php $vis = ['public' => ['公開','green'], 'school' => ['學校內','yellow'], 'class' => ['班級內','blue'], 'private' => ['僅自己','gray']]; $v = $vis[$exam->visibility] ?? ['未知','gray']; @endphp {{ $v[0] }} | {{ $exam->school->name ?? '' }} @if($exam->schoolClass) / {{ $exam->schoolClass->name }} @endif | |
|
尚未建立任何考試 建立第一個考試 | ||||||