@extends('layouts.app') @section('title', '[東京都|〇〇駐輪場] オペレータマスタ') @section('content')

{{__('オペレータマスタ')}}

@csrf
@csrf
{{ $list->appends(['sort' => $sort, 'sort_type' => $sort_type])->links('pagination') }}
@if(Session::has('success')) @elseif(Session::has('error'))

{{__('誤差')}}:

{!! Session::get('error') !!}
@elseif(isset($errorMsg))

{{__('誤差')}}:

{!! $errorMsg !!}
@endif
@csrf
@for($i=1;$i<=13;$i++) @endfor @foreach($list as $item) @for($i=1;$i<=13;$i++) @php $field = "ope_sendalart_que{$i}"; @endphp @endfor @endforeach
オペレータID オペレータ名 オペレータ種別 メールアドレス 電話番号キュー{{$i}}アラート送信管理者権限付与 エリアマネージャー権限付与 エリアオペレーター権限付与 オペレーター権限付与 退職フラグ 退職日
{{__('編集')}} {{ $item->ope_id }} {{ $item->ope_name }} {{ \App\Models\Ope::OPE_TYPE[$item->ope_type] ?? $item->ope_type }} {{ $item->ope_mail }} {{ $item->ope_phone }}{{ $item->$field ? 'はい' : 'いいえ' }}{{ $item->ope_auth1 ? '○' : '' }} {{ $item->ope_auth2 ? '○' : '' }} {{ $item->ope_auth3 ? '○' : '' }} {{ $item->ope_auth4 ? '○' : '' }} {{ $item->ope_quit_flag ? "退職" : "在職" }} {{ $item->ope_quitday }}
{{ $list->appends(['sort' => $sort, 'sort_type' => $sort_type])->links('pagination') }}
@endsection