@extends('layouts.app') @section('title', '問題回報清單') @section('content')
| 功能模組 | 類型 | 標題 | 回報內容 | 回報人 | 狀態 | 建立時間 | @if (auth()->user()->role === 'admin')操作 | @endif
|---|---|---|---|---|---|---|---|
| {{ $i->module?->name ?? '—' }} | {{ $i->category?->name ?? '—' }} | {{ $i->title }} | {{ $i->description }} | {{ $i->user?->name ?? '—' }} | @if (auth()->user()->role === 'admin') @else @if ($i->status == 'pending') 待處理 @elseif($i->status == 'in_progress') 處理中 @elseif($i->status == 'hold') 暫不處理 @elseif($i->status == 'watching') 觀察 @else 完成 @endif @endif | {{ optional($i->created_at)->format('Y-m-d H:i') ?? '-' }} | @if (auth()->user()->role === 'admin')檢視 | @endif