@extends('layouts.app') @section('title', '[東京都|〇〇駐輪場] 駐輪場管理者マスタ') @section('content')

駐輪場管理者マスタ

{{-- 並び替え用 hidden --}}
@csrf
{{ $list->appends(['sort' => $sort ?? '', 'sort_type' => $sort_type ?? ''])->links('pagination') }}
@if(Session::has('success')) @elseif(Session::has('error'))

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

{!! Session::get('error') !!}
@endif
@csrf {{-- ★ チェック + 編集ボタン列 --}} @foreach($list as $item) {{-- チェック+編集ボタン --}} @endforeach
駐輪場管理者ID 駐輪場管理者名 種別 所属駐車場ID 管理デバイス1 管理デバイス2 メール 電話 アラート1 アラート2 退職フラグ 退職日
{{ $item->manager_id }} {{ $item->manager_name }} {{ $item->manager_type }} {{ !empty($item->getPark()) ? $item->getPark()->park_name : '' }} {{ !empty($item->getDevice1()) ? $item->getDevice1()->device_subject : '' }} {{ !empty($item->getDevice2()) ? $item->getDevice2()->device_subject : '' }} {{ $item->manager_mail }} {{ $item->manager_tel }} {{ $item->manager_alert1 }} {{ $item->manager_alert2 }} {{ $item->getManagerQuitFlagDisplay() }} @if($item->manager_quitday) {{ mb_substr($item->manager_quitday, 0, 10) }} @endif
@endsection