{{-- resources/views/vpn-requests/supervisor-index.blade.php --}} @extends('layouts.app') @section('content')

📝 待審核 VPN 帳號申請(主管)

@if ($list->isEmpty())
目前沒有待審核的申請。
@else
@foreach ($list as $req)
{{ $req->username }}

申請人:{{ $req->user->name }}
申請群組:{{ $req->group }} @if ($req->expire_date)
到期日:{{ \Carbon\Carbon::parse($req->expire_date)->format('Y-m-d') }} @endif

申請時間:{{ $req->created_at->format('Y-m-d H:i') }}

@csrf
@endforeach
@endif
@endsection