【利用者マスタ】件数カウント
All checks were successful
Deploy main / deploy (push) Successful in 22s

This commit is contained in:
你的名字 2025-10-30 16:38:22 +09:00
parent a17960f61c
commit 1d7e3941b5

View File

@ -242,6 +242,10 @@
<input type="hidden" name="quit_to" value="{{ $quit_to ?? '' }}">
</form>
<div class="text-right mb-2">
{{ $list->total() }} 件中 {{ $list->firstItem() }}{{ $list->lastItem() }} 件を表示
</div>
<div class="d-flex align-items-center mb-2">
<div>
<a href="{{ route('users_add') }}" class="btn btn-primary">新規</a>
@ -259,7 +263,8 @@
@csrf
<div id="users-list" class="table-responsive">
<table class="table table-bordered table-hover text-nowrap table-users dataTable" style="min-width:1200px;">
<table class="table table-bordered table-hover text-nowrap table-users dataTable"
style="min-width:1200px;">
<thead class="thead-light">
<tr>
<th style="width:110px;" class="{{ $thClass('user_id') }}">
@ -304,7 +309,8 @@
@endphp
<tr>
{{-- 利用者IDリンク --}}
<td class="text-nowrap"><a href="{{ $userEditUrl }}">{{ $item->user_id }} {{ $item->user_name }}</a></td>
<td class="text-nowrap"><a href="{{ $userEditUrl }}">{{ $item->user_id }}
{{ $item->user_name }}</a></td>
{{-- タグQR --}}
<td>{{ $item->tag_qr_flag ? '' : 'タグ' }}</td>
{{-- 利用者分類ID氏名フリガナ --}}
@ -345,6 +351,7 @@
#users-list tfoot th {
background: #fff !important;
}
.table-users thead th .header-link {
color: #212529 !important;
text-decoration: none !important;
@ -352,6 +359,7 @@
white-space: nowrap;
padding-right: 1.8rem;
}
.table-users.dataTable thead th.sorting,
.table-users.dataTable thead th.sorting_asc,
.table-users.dataTable thead th.sorting_desc {