@extends('layouts.app') @section('title', $profile->name . ' - GCB 排除設定') @push('head') @endpush @section('content')
| TWGCB-ID | 項目名稱 | 排除原因 | 核准人 | 操作 |
|---|---|---|---|---|
{{ $exc->gcb_item_id }} |
{{ $item['name'] ?? '-' }} | {{ $exc->reason }} | {{ $exc->approved_by }} |
| # | TWGCB-ID | 類別 | 原則設定名稱 | 設定值 | 狀態 | 操作 |
|---|---|---|---|---|---|---|
| {{ $idx + 1 }} | {{ $item['id'] }} |
{{ $item['category'] ?? '-' }} | {{ $item['name'] ?? '-' }} | @php $val = $item['expected'] ?? '-'; $cls = match(true) { $val === '停用' => 'gcb-val-disable', $val === '啟用' => 'gcb-val-enable', str_contains($val, '請參閱') => 'gcb-val-ref', default => 'gcb-val-other' }; $display = mb_strlen($val) > 18 ? mb_substr($val, 0, 18) . '…' : $val; @endphp {{ $display }} | @if ($isExcluded) 已排除 @else 檢測中 @endif | @if (!$isExcluded) @endif |