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