@extends('layouts.app') @section('title', 'Redmine 主管審核') @section('content')
| # | 申請類型 | 帳號/專案 | 申請人 | 申請日期 | 狀態 | 操作 |
|---|---|---|---|---|---|---|
| {{ $row->id }} | @php $typeColor = match ($row->request_type) { 'new_account' => 'success', 'join_project' => 'primary', 'new_project' => 'warning', default => 'secondary', }; @endphp {{ $row->request_type_label }} | @if ($row->request_type === 'join_project') {{ $row->redmine_login }} @elseif ($row->request_type === 'new_project') {{ $row->projects }} @else {{ $row->username }} @endif | {{ $row->user->name ?? '-' }} | {{ $row->created_at->format('Y-m-d H:i') }} | 待主管審核 | |
| 目前沒有待審核的申請。 | ||||||