@extends('layouts.setup') @section('title', 'オペレーター管理') @section('page-title', 'オペレーター管理') @section('setup_body') @php use App\Support\OperatorPermissionCatalog; $legacyOperators = $operators->filter(fn ($op) => empty($op->login_user_id)); @endphp @if($legacyOperators->isNotEmpty())
オペレーターが登録されていません
| 名前 | メールアドレス | 権限 | ステータス | |
|---|---|---|---|---|
| {{ $op->name }} | {{ $op->email }} |
@forelse(OperatorPermissionCatalog::activeLabels($op) as $label)
{{ $label }}
@empty
なし
@endforelse
|
@if(empty($op->login_user_id)) 要再登録 @else {{ $op->status === 'active' ? '有効' : '無効' }} @endif |
@if($op->login_user_id)
@endif
|