@extends('layouts.app') @section('title', '防火牆申請紀錄') @section('content')

防火牆申請紀錄

你的防火牆開放申請列表
新增申請
@if(session('success'))
{{ session('success') }}
@endif
@forelse($requests as $r) @empty @endforelse
# IP 目標伺服器 Port 申請原因 狀態 審核備注 申請時間
{{ $r->id }} {{ $r->ip_address }} {{ $r->target_server }} @foreach($r->ports as $p) {{ $p }} @endforeach {{ $r->reason }} {{ $r->statusLabel() }} @if($r->ufw_applied_at)
UFW 套用:{{ $r->ufw_applied_at->format('m/d H:i') }}
@endif
{{ $r->reviewer_note ?: '—' }} {{ $r->created_at->format('Y/m/d H:i') }}
尚無申請紀錄
@if($requests->hasPages()) @endif
@endsection