@extends('layouts.app') @section('title', '財產盤點清單') @section('content')
{{-- ── 左側分類選單 ── --}}
分類篩選
全部 @foreach($categories as $cat) @php $icon = match($cat) { '硬體' => 'bi-cpu', '軟體' => 'bi-code-slash', '人員' => 'bi-people', '基礎建設' => 'bi-building', '資訊' => 'bi-database', default => 'bi-tag', }; @endphp {{ $cat }} @endforeach
{{-- ── 右側表格 ── --}}
@if (session('success'))
{{ session('success') }}
@endif

{{ $activeCategory ? $activeCategory : '全部' }} 財產盤點清單

{{ $assets->count() }} 筆
{{-- 批次操作列 --}}
@foreach ($assets as $a) @endforeach
# 分類 名稱 SN 數量 CIA 位置 管理者 可外借 交接歸還負責組 建檔日期 操作
{{ $loop->iteration }} {{ $a->category }} {{ $a->asset_name }} {{ $a->asset_sn }} {{ $a->quantity }} {{ $a->confidentiality }}/{{ $a->integrity }}/{{ $a->availability }} {{ $a->location }} @if ($a->manager && $a->manager->is_active) {{ $a->manager->name }} @elseif ($a->manager && !$a->manager->is_active) 系統資安組 {{ $a->manager->name }}已離職 @else 系統資安組 @endif {{ $a->lendable ? '✅' : '❌' }} {{ \App\Models\Asset::CONFIRM_DEPTS[$a->confirm_dept] ?? $a->confirm_dept }} {{ $a->created_at->format('Y-m-d') }} 編輯
@csrf @method('DELETE')
{{-- .col-md-10 --}}
{{-- .row --}}
@endsection @push('styles') @endpush @push('scripts') @endpush