タイトル修正
All checks were successful
Deploy main / deploy (push) Successful in 23s

This commit is contained in:
kin.rinzen 2025-10-16 15:42:21 +09:00
parent fb6f23b374
commit 070e692966
4 changed files with 7 additions and 9 deletions

View File

@ -6,13 +6,13 @@
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1 class="m-0 text-dark">新規登録</h1>
<h1 class="m-0 text-dark">新規</h1>
</div>
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right text-sm">
<li class="breadcrumb-item"><a href="{{ route('home') }}">ホーム</a></li>
<li class="breadcrumb-item"><a href="{{ route('contract_allowable_cities') }}">契約許容市区マスタ</a></li>
<li class="breadcrumb-item active">新規登録</li>
<li class="breadcrumb-item active">新規</li>
</ol>
</div>
</div>

View File

@ -1,5 +1,5 @@
@extends('layouts.app')
@section('title', '[東京都|〇〇駐輪場] 契約許容市区マスタ')
@section('title', '契約許容市区マスタ')
@section('content')
@ -107,7 +107,7 @@
<form method="post" action="{{ route('contract_allowable_cities_delete') }}" id="form_delete">
@csrf
<table class="table table-bordered dataTable text-nowrap">
<thead class="bg-light">
<thead class="thead-light">
<tr>
<th style="width:140px; border-left:1px solid #dcdcdc;" class="text-left">
<input type="checkbox" onclick="$('input[name*=\'pk\']').prop('checked', this.checked);">

View File

@ -77,7 +77,7 @@
<form action="{{ route('stations_delete') }}" method="POST" id="form_delete">
@csrf
<table class="table table-bordered dataTable text-nowrap">
<thead>
<thead class="thead-light">
<tr>
{{-- チェック + 編集 用の1列 --}}
<th style="width:140px;" class="text-left">

View File

@ -69,14 +69,14 @@
<input type="checkbox" onclick="$('input[name*=\'pk\']').prop('checked', this.checked);">
</th>
<th class="sorting {{ ($sort=='terms_id') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="terms_id">
<span>利用約ID</span>
<span>利用約ID</span>
</th>
<th class="sorting {{ ($sort=='city_id') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="city_id">
<span>市区ID</span>
</th>
<th><span>使用中</span></th>
<th><span>リビジョン</span></th>
<th><span>約内容</span></th>
<th><span>約内容</span></th>
<th><span>備考</span></th>
<th class="sorting {{ ($sort=='start_date') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="start_date">
<span>使用開始日</span>
@ -112,6 +112,4 @@
<!-- 単一テーブル構成ここまで -->
</div>
</section>
<form action="{{ route('terms_export') }}" method="GET" id="form_export"></form>
@endsection