@extends('layouts.app') @section('title', '未更新者一覧') @section('content')

未更新者一覧

{{-- ▼ カード全体 --}}
{{-- ▼ 絞り込みフィルター(card-header) --}}
絞り込みフィルター
{{-- ▼ フィルター条件エリア(card-body) --}}
{{-- 左カラム --}}
@isset($parks) @else @endisset
{{-- ===== 利用者分類:input を select に変更 ===== --}}
@isset($categories) @else @endisset
{{-- 右カラム --}}
{{-- ▼ 絞り込みボタン --}}
解除
{{-- ページネーションのラッパーを追加 --}}
{{-- ページネーションのビジュアルラッパー --}}
{{-- ▼ 一覧テーブル部:スクロール対応 --}}
@php($activeSort = request('sort')) @php($activeType = request('sort_type')) @forelse ($rows as $row) @empty @endforelse
利用者ID 氏名 フリガナ 定期契約ID タグ・QR 駐輪場 車種区分 有効期間 減免措置 利用者分類1 利用者分類2 利用者分類3 携帯電話番号 自宅電話番号 生年月日 性別 居住所:郵便番号 居住所:都道府県 居住所:市区群 居住所:住所 関連住所:郵便番号 関連住所:都道府県 関連住所:市区群 関連住所:住所 契約日 利用期間 定期券区分 学校 卒業予定 シール発行回数 防犯登録 備考
{{ $row->user_id }} {{ $row->user_name }} {{ $row->user_phonetic }} {{ $row->contract_id }} {{ $row->tag_qr_flag ? 'QR' : 'タグ' }} {{ $row->park_name }} {{ $row->vehicle_type ?? '' }} {{ \Carbon\Carbon::parse($row->contract_periods)->format('Y-m-d') }} ~ {{ \Carbon\Carbon::parse($row->contract_periode)->format('Y-m-d') }} {{ $row->user_reduction ?? '' }} {{ $row->user_category1 ?? '' }} {{ $row->user_category2 ?? '' }} {{ $row->user_category3 ?? '' }} {{ $row->user_mobile }} {{ $row->user_homephone }} {{ $row->user_birthdate }} {{ $row->user_gender }} {{ $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 }} {{-- 契約日を「yyyymmdd」形式で表示する --}} {{ $row->contract_created_at ? \Illuminate\Support\Carbon::parse($row->contract_created_at)->format('Ymd') : '' }} contract_periode)) { $today = \Illuminate\Support\Carbon::now()->startOfDay(); $end = \Illuminate\Support\Carbon::parse($row->contract_periode)->startOfDay(); if ($end->lte($today)) { $months = $end->diffInMonths($today); if ($months <= 1) { $label = '直近1ヶ月'; } elseif ($months <= 3) { $label = '直近3ヶ月'; } elseif ($months <= 6) { $label = '直近6ヶ月'; } } } } catch (\Throwable $e) { $label = ''; } ?> {{ $label }} @if($row->update_flag == 1) 継続 @elseif($row->update_flag == 2) それ @else {{-- それ以外は空白 --}} @endif {{ $row->user_school }} {{ $row->user_graduate }} {{ $row->contract_seal_issue }} {{ $row->user_securitynum }} {{ $row->user_remarks }}
データがありません。
@push('scripts') @endpush @endsection