@extends('layouts.app') @section('title', '報修清單') @section('content')
| # | 資產 | 申請人 | 原因 | 狀態 | 建立時間 | @if (auth()->user()->role === 'admin')操作 | @endif
|---|---|---|---|---|---|---|
| {{ $row->id }} | {{ $row->asset->asset_name ?? '-' }} | {{ $row->user->name }} | {{ $row->reason }} | @switch($row->status) @case('pending') ⚠️ 待處理 @break @case('in_progress') 🔧 維修中 @break @case('resolved') ✅ 已完成 @break @endswitch | {{ $row->created_at }} | @if (auth()->user()->role === 'admin'){{-- 狀態下拉快速更新 --}} | @endif