@extends('layouts.app') @section('title', '予約者一覧') @section('content')

予約者一覧

{{-- ▼ カード全体 --}}
{{-- ▼ 絞り込みフィルター(card-header) --}}
絞り込みフィルター
{{-- ▼ フィルター条件エリア(card-body) --}}
{{-- 左カラム --}}
@isset($parks) @else @endisset
{{-- 利用者分類 --}}
@isset($categories) @else @endisset
{{-- 右カラム --}}
{{-- ▼ 絞り込みボタン --}}
解除
{{-- ページネーションのラッパーを追加 --}}
{{-- ページネーションのビジュアルラッパー --}}
{{-- ▼ 一覧テーブル部:スクロール対応 --}}
@php($activeSort = request('sort')) @php($activeType = request('sort_type')) @forelse ($rows as $row) @empty @endforelse
利用者ID 氏名 フリガナ 居住所:郵便番号 居住所:都道府県 居住所:市区群 居住所:住所 関連住所:郵便番号 関連住所:都道府県 関連住所:市区群 関連住所:住所 生年月日 性別 携帯電話番号 自宅電話番号 学校 卒業予定 備考 定期予約ID 利用者分類1 利用者分類2 利用者分類3 駐輪場ID 駐輪場所ID 車種区分ID 予約日時 減免措置 800M以内フラグ
{{ $row->user_id }} {{ $row->user_name }} {{ $row->user_phonetic }} {{ $row->user_regident_zip }} {{ $row->user_regident_pre }} {{ $row->user_regident_city }} {{ $row->user_regident_add }} {{ $row->user_relate_zip }} {{ $row->user_relate_pre }} {{ $row->user_relate_city }} {{ $row->user_relate_add }} {{ $row->user_birthdate }} {{ $row->user_gender }} {{ $row->user_mobile }} {{ $row->user_homephone }} {{ $row->user_school }} {{ $row->user_graduate }} {{ $row->user_remarks }} {{ $row->contract_id }} {{ $row->user_category1 ?? '' }} {{ $row->user_category2 ?? '' }} {{ $row->user_category3 ?? '' }} {{ $row->park_name ?? '-' }} {{ $row->price_parkplaceid }} {{ [1 => '自転車', 2 => '原付', 3 => 'その他'][$row->psection_id] ?? '' }} {{ $row->reserve_date }} {{ $row->user_reduction ?? '' }} {{ $row->{'800m_flag'} ?? '' }}
データがありません。
@push('scripts') @endpush @endsection