@extends('layouts.app') @section('title', '財產盤點清單') @section('content')
| # | 分類 | 名稱 | 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') }} | 編輯 |