@extends('layouts.app') @section('title', '報修清單') @section('content')

報修清單

{{-- 如果有額外篩選表單可放這裡 --}}
@if (auth()->user()->role === 'admin') @endif @foreach ($list as $row) @if (auth()->user()->role === 'admin') @endif @endforeach
# 資產 申請人 原因 狀態 建立時間操作
{{ $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 }} {{-- 狀態下拉快速更新 --}}
@csrf @method('PATCH')
@endsection {{-- ③ 只推送 DataTables 初始化腳本 --}} @push('scripts') @endpush