@extends('layouts.app') @section('title', '交接項目範本管理') @section('content')
| 排序 | 項目名稱 | 說明 | 題型 | 套用專案 | 建立人 | |
|---|---|---|---|---|---|---|
| {{ $t->sort_order }} | {{ $t->title }} | {{ Str::limit($t->description, 50) ?: '—' }} | @if($t->item_type === 'yesno') 是否題 @else 問答題 @endif | @if($t->apply_per_project) @else — @endif | {{ $t->creator?->name ?? '—' }} |
@if(auth()->user()->role === 'admin' || $t->created_by === auth()->id())
|