@extends('layouts.app') @section('title', '議題清單') @section('content') {{-- 頂部 --}}
{{-- Tab 導覽 --}} {{-- 內容 --}}議題清單
@if(session('success'))| 功能模組 | 類型 | 標題 | 回報內容 | 回報人 | 狀態 | 建立時間 | @if(auth()->user()->role === 'admin')操作 | @endif
|---|---|---|---|---|---|---|---|
| {{ $i->module?->name ?? '—' }} | {{ $i->category?->name ?? '—' }} | {{ $i->title }} | {{ Str::limit($i->description, 80) }} | {{ $i->user?->name ?? '—' }} | @if(auth()->user()->role === 'admin') @else {{ $statusMap[$i->status] ?? $i->status }} @endif | {{ $i->created_at?->format('Y-m-d H:i') ?? '—' }} | @if(auth()->user()->role === 'admin')檢視 | @endif