【利用者マスタ】数値系は右寄せ
All checks were successful
Deploy main / deploy (push) Successful in 22s

This commit is contained in:
你的名字 2025-10-31 21:10:18 +09:00
parent 1d7e3941b5
commit b709765361

View File

@ -309,7 +309,7 @@
@endphp @endphp
<tr> <tr>
{{-- 利用者IDリンク --}} {{-- 利用者IDリンク --}}
<td class="text-nowrap"><a href="{{ $userEditUrl }}">{{ $item->user_id }} <td class="text-nowrap"><a href="{{ $userEditUrl }}">{{ $item->user_id }}
{{ $item->user_name }}</a></td> {{ $item->user_name }}</a></td>
{{-- タグQR --}} {{-- タグQR --}}
<td>{{ $item->tag_qr_flag ? '' : 'タグ' }}</td> <td>{{ $item->tag_qr_flag ? '' : 'タグ' }}</td>
@ -318,17 +318,17 @@
<td>{{ $item->user_name }}</td> <td>{{ $item->user_name }}</td>
<td>{{ $item->user_phonetic }}</td> <td>{{ $item->user_phonetic }}</td>
{{-- 生年月日/年齢 --}} {{-- 生年月日/年齢 --}}
<td>{{ $item->user_birthdate ? \Illuminate\Support\Str::limit($item->user_birthdate, 10, '') : '' }} <td class="text-right">{{ $item->user_birthdate ? \Illuminate\Support\Str::limit($item->user_birthdate, 10, '') : '' }}
</td> </td>
<td>{{ $item->user_age }}</td> <td class="text-right">{{ $item->user_age }}</td>
{{-- 連絡先 --}} {{-- 連絡先 --}}
<td>{{ $item->user_mobile }}</td> <td class="text-right">{{ $item->user_mobile }}</td>
<td>{{ $item->user_homephone }}</td> <td class="text-right">{{ $item->user_homephone }}</td>
<td class="text-nowrap">{{ $item->user_primemail }}</td> <td class="text-nowrap">{{ $item->user_primemail }}</td>
{{-- 本人確認(書類/チェック/日時) --}} {{-- 本人確認(書類/チェック/日時) --}}
<td>{{ __($item->user_idcard) }}</td> <td>{{ __($item->user_idcard) }}</td>
<td class="text-nowrap">{{ $chk === '1' ? '手動チェックOK' : '未チェック' }}</td> <td class="text-nowrap">{{ $chk === '1' ? '手動チェックOK' : '未チェック' }}</td>
<td>{{ $item->user_chk_day ? \Illuminate\Support\Str::limit($item->user_chk_day, 10, '') : '' }} <td class="text-right">{{ $item->user_chk_day ? \Illuminate\Support\Str::limit($item->user_chk_day, 10, '') : '' }}
</td> </td>
{{-- 退会 --}} {{-- 退会 --}}
<td>{{ $item->user_quit_flag ? 'はい' : 'いいえ' }}</td> <td>{{ $item->user_quit_flag ? 'はい' : 'いいえ' }}</td>
@ -353,8 +353,8 @@
} }
.table-users thead th .header-link { .table-users thead th .header-link {
color: #212529 !important; color: #495057 !important;
text-decoration: none !important; text-decoration: underline !important;
display: block; display: block;
white-space: nowrap; white-space: nowrap;
padding-right: 1.8rem; padding-right: 1.8rem;