This commit is contained in:
parent
c5c35470dc
commit
e41309ca4c
@ -1,5 +1,5 @@
|
|||||||
@extends('layouts.app')
|
@extends('layouts.app')
|
||||||
@section('title', '[東京都|〇〇駐輪場] シール発行履歴')
|
@section('title', 'シール発行履歴')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
@ -81,15 +81,10 @@
|
|||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="ms-auto">
|
||||||
|
{{ $list->appends(request()->except('page'))->links('pagination') }}
|
||||||
|
</div>
|
||||||
<!-- データテーブル -->
|
<!-- データテーブル -->
|
||||||
<style>
|
|
||||||
/* このページ限定:テーブルの右端/下端線を常に表示 */
|
|
||||||
#seals-table-wrapper {
|
|
||||||
border-right: 1px solid #dee2e6;
|
|
||||||
border-bottom: 1px solid #dee2e6;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div id="seals-table-wrapper" class="table-responsive">
|
<div id="seals-table-wrapper" class="table-responsive">
|
||||||
<table class="table table-bordered table-hover table-sm dataTable">
|
<table class="table table-bordered table-hover table-sm dataTable">
|
||||||
<thead class="thead-light">
|
<thead class="thead-light">
|
||||||
@ -147,14 +142,7 @@ document.querySelectorAll('th.sorting').forEach(th => {
|
|||||||
window.location.href = url.toString();
|
window.location.href = url.toString();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
|
||||||
@endpush
|
|
||||||
<div class="ms-auto">
|
|
||||||
{{ $list->appends(request()->except('page'))->links('pagination') }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<script>
|
|
||||||
function togglePeriodInputs() {
|
function togglePeriodInputs() {
|
||||||
const isRange = document.getElementById('period_type_range').checked;
|
const isRange = document.getElementById('period_type_range').checked;
|
||||||
document.getElementById('seal_day_from').disabled = !isRange;
|
document.getElementById('seal_day_from').disabled = !isRange;
|
||||||
@ -165,4 +153,7 @@ document.querySelectorAll('th.sorting').forEach(th => {
|
|||||||
document.getElementById('period_type_recent').addEventListener('change', togglePeriodInputs);
|
document.getElementById('period_type_recent').addEventListener('change', togglePeriodInputs);
|
||||||
window.addEventListener('DOMContentLoaded', togglePeriodInputs);
|
window.addEventListener('DOMContentLoaded', togglePeriodInputs);
|
||||||
</script>
|
</script>
|
||||||
|
@endpush
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
Loading…
Reference in New Issue
Block a user