近傍駅マスタレイアウト修正
This commit is contained in:
parent
18db7a0770
commit
f4466829cd
24
app/Models/City.php
Normal file
24
app/Models/City.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class City extends Model
|
||||
{
|
||||
|
||||
protected $table = 'city';
|
||||
protected $primaryKey = 'city_id';
|
||||
protected $keyType = 'int';
|
||||
public $incrementing = true;
|
||||
|
||||
|
||||
public static function getList(?int $operatorId = null): array
|
||||
{
|
||||
return static::query()
|
||||
->when($operatorId, fn ($q) => $q->where('operator_id', $operatorId))
|
||||
->orderBy('city_name')
|
||||
->pluck('city_name', 'city_id')
|
||||
->toArray();
|
||||
}
|
||||
}
|
||||
@ -23,6 +23,7 @@
|
||||
<!-- Main Content -->
|
||||
<section class="content">
|
||||
<div class="container-fluid">
|
||||
{{-- 並び替え用 hidden --}}
|
||||
<form action="{{ route('neighbor_stations') }}" method="POST" id="list-form">
|
||||
@csrf
|
||||
<input type="hidden" name="sort" value="{{ $sort ?? '' }}">
|
||||
@ -33,8 +34,24 @@
|
||||
<button type="button" class="btn btn-sm btn-default mr10" onclick="location.href='{{ route('neighbor_station_add') }}'">新規</button>
|
||||
<button type="button" class="btn btn-sm btn-default mr10" id="delete">削除</button>
|
||||
<button type="submit" class="btn btn-sm btn-default mr10" form="form_export">{{ __('CSV出力') }}</button>
|
||||
<div class="d-flex justify-content-end">
|
||||
{{ $stations->appends(['sort' => $sort ?? '', 'sort_type' => $sort_type ?? ''])->links('pagination') }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form col-lg-12">
|
||||
@if(Session::has('success'))
|
||||
<div class="alert alert-success alert-dismissible" role="alert">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
{{ Session::get('success') }}
|
||||
</div>
|
||||
@elseif(Session::has('error'))
|
||||
<div class="alert alert-danger alert-dismissible">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<h4><i class="icon fa fa-ban"></i> {{ __('誤差') }}:</h4>
|
||||
{!! Session::get('error') !!}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<!-- メッセージ表示 -->
|
||||
<div class="col-lg-12">
|
||||
@ -45,55 +62,23 @@
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 row sample03-wrapper no_padding_right mb20">
|
||||
<!-- 左側チェックボックス&編集ボタン -->
|
||||
<div class="col-xl-2 col-lg-2 col-md-2 col-sm-3 col-xs-3 table_left">
|
||||
<!-- ▼ ここから単一テーブル構成 ----------------------------------------- -->
|
||||
<div class="col-lg-12 mb20">
|
||||
<div class="table-responsive">
|
||||
<form action="{{ route('neighbor_stations_delete') }}" method="POST" id="form_delete">
|
||||
@csrf
|
||||
<table class="table dataTable">
|
||||
<table class="table table-bordered table-striped dataTable text-nowrap">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><input type="checkbox" class="minimal m-0" id="checkbox_all"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($stations as $station)
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<input type="checkbox" class="minimal m-0 checkbox" value="{{ $station->station_id }}" name="pk[]">
|
||||
<div class="btn_action">
|
||||
<a href="{{ route('neighbor_station_edit', ['id' => $station->station_id]) }}" class="btn btn-sm btn-default ml10">{{ __('編集') }}</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<!-- 右側データテーブル -->
|
||||
<div class="col-lg-10 col-xl-10 col-md-10 col-sm-9 col-xs-9 table_right no_padding_right">
|
||||
<div class="scroll">
|
||||
<table class="table dataTable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="sorting {{ ($sort=='station_id') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="station_id">
|
||||
<span>近傍駅ID</span>
|
||||
</th>
|
||||
<th class="sorting {{ ($sort=='park_id') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="park_id">
|
||||
<span>駐車場ID</span>
|
||||
</th>
|
||||
<th class="sorting {{ ($sort=='station_neighbor_station') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="station_neighbor_station">
|
||||
<span>近傍駅</span>
|
||||
</th>
|
||||
<th class="sorting {{ ($sort=='station_name_ruby') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="station_name_ruby">
|
||||
<span>近傍駅ふりがな</span>
|
||||
</th>
|
||||
<th class="sorting {{ ($sort=='station_route_name') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="station_route_name">
|
||||
<span>路線名</span>
|
||||
{{-- ★ チェック + 編集 用の1列 --}}
|
||||
<th style="width:120px;" class="text-left">
|
||||
<input type="checkbox" class="minimal m-0" id="checkbox_all">
|
||||
</th>
|
||||
<th class="sorting {{ ($sort=='station_id') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="station_id"><span>近傍駅ID</span></th>
|
||||
<th class="sorting {{ ($sort=='park_id') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="park_id"><span>駐車場ID</span></th>
|
||||
<th class="sorting {{ ($sort=='station_neighbor_station') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="station_neighbor_station"><span>近傍駅</span></th>
|
||||
<th class="sorting {{ ($sort=='station_name_ruby') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="station_name_ruby"><span>近傍駅ふりがな</span></th>
|
||||
<th class="sorting {{ ($sort=='station_route_name') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="station_route_name"><span>路線名</span></th>
|
||||
<th><span>近傍駅座標(緯度)</span></th>
|
||||
<th><span>近傍駅座標(経度)</span></th>
|
||||
</tr>
|
||||
@ -101,20 +86,30 @@
|
||||
<tbody>
|
||||
@foreach($stations as $station)
|
||||
<tr>
|
||||
<td class="sm-item text-left">{{ $station->station_id }}</td>
|
||||
<td class="sm-item text-left">{{ $station->park_id }}</td>
|
||||
<td class="sm-item text-left">{{ $station->station_neighbor_station }}</td>
|
||||
<td class="sm-item text-left">{{ $station->station_name_ruby }}</td>
|
||||
<td class="sm-item text-left">{{ $station->station_route_name }}</td>
|
||||
<td class="sm-item text-left">{{ $station->station_latitude }}</td>
|
||||
<td class="sm-item text-left">{{ $station->station_longitude }}</td>
|
||||
{{-- ★ 同じセル内に チェック + 編集ボタン) --}}
|
||||
<td class="table-warning align-middle">
|
||||
<div class="d-flex align-items-center">
|
||||
<input type="checkbox" class="minimal m-0 checkbox" name="pk[]" value="{{ $station->station_id }}">
|
||||
<a href="{{ route('neighbor_station_edit', ['id' => $station->station_id]) }}"
|
||||
class="btn btn-sm btn-default ml-2">{{ __('編集') }}</a>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<td class="sm-item text-left align-middle">{{ $station->station_id }}</td>
|
||||
<td class="sm-item text-left align-middle">{{ $station->park_id }}</td>
|
||||
<td class="sm-item text-left align-middle">{{ $station->station_neighbor_station }}</td>
|
||||
<td class="sm-item text-left align-middle">{{ $station->station_name_ruby }}</td>
|
||||
<td class="sm-item text-left align-middle">{{ $station->station_route_name }}</td>
|
||||
<td class="sm-item text-left align-middle">{{ $station->station_latitude }}</td>
|
||||
<td class="sm-item text-left align-middle">{{ $station->station_longitude }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ▲ 単一テーブル構成ここまで ----------------------------------------- -->
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
|
||||
@extends('layouts.app')
|
||||
@section('title', '[東京都|〇〇駐輪場] 定期種別マスタ')
|
||||
@section('content')
|
||||
@ -7,27 +6,23 @@
|
||||
<div class="row mb-2">
|
||||
<div class="col-lg-6">
|
||||
<h1 class="m-0 text-dark">{{ __('定期種別マスタ') }}</h1>
|
||||
</div><!-- /.col -->
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<ol class="breadcrumb float-sm-right text-sm">
|
||||
<li class="breadcrumb-item"><a href="{{ route('home') }}">XX様info(ホーム)</a></li>
|
||||
<li class="breadcrumb-item"><a href="javascript:void(0);">[東京都|〇〇駐輪場]</a></li>
|
||||
<li class="breadcrumb-item active">{{ __('定期種別マスタ') }}</li>
|
||||
</ol>
|
||||
</div><!-- /.col -->
|
||||
</div><!-- /.row -->
|
||||
</div><!-- /.container-fluid -->
|
||||
</div>
|
||||
<!-- /.content-header -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Main content -->
|
||||
<section class="content">
|
||||
<div class="container-fluid">
|
||||
<!-- SELECT2 EXAMPLE -->
|
||||
|
||||
|
||||
<div class="row">
|
||||
<form action="{{route('regular_types')}}" method='post' id='list-form'>
|
||||
<form action="{{ route('regular_types') }}" method="post" id="list-form">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
||||
<input type="hidden" value="{{ $sort }}" name="sort" id="sort">
|
||||
<input type="hidden" value="{{ $sort_type }}" name="sort_type" id="sort_type">
|
||||
@ -39,6 +34,7 @@
|
||||
<button type="submit" class="btn btn-sm btn-default mr10" name="export_csv" id="export_csv" action="{{ route('regular_types_export') }}">{{ __('CSV出力') }}</button>
|
||||
{{ $list->appends(['sort' => $sort, 'sort_type' => $sort_type])->links('pagination') }}
|
||||
</div>
|
||||
|
||||
<div class="form col-lg-12">
|
||||
@if(Session::has('success'))
|
||||
<div class="alert alert-success alert-dismissible" role="alert">
|
||||
@ -59,6 +55,7 @@
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 row sample03-wrapper no_padding_right mb20">
|
||||
<div class="col-xl-2 col-lg-2 col-md-2 col-sm-3 col-xs-3 table_left">
|
||||
<form action="{{ route('regular_types_delete') }}" method="post" id="form_delete">
|
||||
@ -66,100 +63,107 @@
|
||||
<table class="table dataTable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
<input type="checkbox" class="minimal m-0" id="checkbox_all">
|
||||
</th>
|
||||
<th><input type="checkbox" class="minimal m-0" id="checkbox_all"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($list as $item)
|
||||
<tr role="row">
|
||||
<td>
|
||||
<input type="checkbox" class="minimal m-0 checkbox"
|
||||
value="{{$item->regular_type_id}}" name="pk[]">
|
||||
<input type="checkbox" class="minimal m-0 checkbox" value="{{ $item->regular_type_id }}" name="pk[]">
|
||||
<div class="btn_action">
|
||||
{{--<a href="{{route('regular_type_add')}}" class="btn btn-sm btn-default">詳細</a>--}}
|
||||
<a href="{{ route('regular_type_info', ['id' => $item->regular_type_id]) }}"
|
||||
class="btn btn-sm btn-default ml10">{{ __('編集') }}</a>
|
||||
<a href="{{ route('regular_type_info', ['id' => $item->regular_type_id]) }}" class="btn btn-sm btn-default ml10">{{ __('編集') }}</a>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-10 col-xl-10 col-md-10 col-sm-9 col-xs-9 table_right no_padding_right">
|
||||
<div class="scroll">
|
||||
<table class="table dataTable">
|
||||
<thead>
|
||||
<tr>
|
||||
<!-- 定期種別ID -->
|
||||
<th class="sorting @if($sort=="regular_type_id"){{$sort_type == 'asc'?'sorting_asc':'sorting_desc'}}@endif"
|
||||
sort="regular_type_id"><span>{{__('validation.attributes.regular_type_id')}}</span>
|
||||
<th class="sorting @if($sort=='regular_type_id'){{ $sort_type=='asc'?'sorting_asc':'sorting_desc' }}@endif" sort="regular_type_id">
|
||||
<span>{{ __('validation.attributes.regular_type_id') }}</span>
|
||||
</th>
|
||||
|
||||
<!-- 市区名 -->
|
||||
<th><span>{{__('validation.attributes.city_name')}}</span>
|
||||
</th>
|
||||
<th><span>{{ __('validation.attributes.city_name') }}</span></th>
|
||||
<!-- 定期種別1 -->
|
||||
<th><span>{{__('validation.attributes.regular_class_1')}}</span>
|
||||
</th>
|
||||
<th><span>{{ __('validation.attributes.regular_class_1') }}</span></th>
|
||||
<!-- 定期種別2 -->
|
||||
<th><span>{{__('validation.attributes.regular_class_2')}}</span>
|
||||
</th>
|
||||
<th><span>{{ __('validation.attributes.regular_class_2') }}</span></th>
|
||||
<!-- 定期種別3 -->
|
||||
<th><span>{{__('validation.attributes.regular_class_3')}}</span>
|
||||
</th>
|
||||
|
||||
<th><span>{{ __('validation.attributes.regular_class_3') }}</span></th>
|
||||
<!-- 定期種別6 -->
|
||||
<th><span>{{__('validation.attributes.regular_class_6')}}</span>
|
||||
</th>
|
||||
|
||||
<th><span>{{ __('validation.attributes.regular_class_6') }}</span></th>
|
||||
<!-- 定期種別12 -->
|
||||
<th><span>{{__('validation.attributes.regular_class_12')}}</span>
|
||||
</th>
|
||||
<th><span>{{ __('validation.attributes.regular_class_12') }}</span></th>
|
||||
<!-- 備考 -->
|
||||
<th><span>{{__('validation.attributes.memo')}}</span>
|
||||
</th>
|
||||
<th><span>{{ __('validation.attributes.memo') }}</span></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@php
|
||||
// 统一取一次常量,避免在 Blade 中多次写全限定类名
|
||||
$rc = \App\Models\RegularType::RegularClass;
|
||||
@endphp
|
||||
|
||||
<tbody>
|
||||
@foreach($list as $item)
|
||||
<tr>
|
||||
|
||||
<!-- 定期種別ID -->
|
||||
<td class='sm-item text-left'><span>{{mb_substr($item->regular_type_id, 0, 10)}}</span></td>
|
||||
<td class="sm-item text-left">
|
||||
<span>{{ mb_substr($item->regular_type_id, 0, 10) }}</span>
|
||||
</td>
|
||||
|
||||
<!-- 市区名 -->
|
||||
<td class='sm-item text-right'><span>{{mb_substr(!empty($item->getCity())?$item->getCity()->city_name:"", 0, 10)}}</span></td>
|
||||
<td class="sm-item text-right">
|
||||
<span>{{ mb_substr($item->getCity()?->city_name ?? '-', 0, 10) }}</span>
|
||||
</td>
|
||||
|
||||
<!-- 定期種別1 -->
|
||||
<td class='sm-item text-right'><span>{{mb_substr(__(\App\RegularType::RegularClass[$item->regular_class_1]), 0, 10)}}</span></td>
|
||||
<td class="sm-item text-right">
|
||||
<span>{{ mb_substr(__($rc[$item->regular_class_1] ?? '-'), 0, 10) }}</span>
|
||||
</td>
|
||||
|
||||
<!-- 定期種別2 -->
|
||||
<td class='sm-item text-right'><span>{{mb_substr(__(\App\RegularType::RegularClass[$item->regular_class_2]), 0, 10)}}</span></td>
|
||||
<td class="sm-item text-right">
|
||||
<span>{{ mb_substr(__($rc[$item->regular_class_2] ?? '-'), 0, 10) }}</span>
|
||||
</td>
|
||||
|
||||
<!-- 定期種別3 -->
|
||||
<td class='sm-item text-right'><span>{{mb_substr(__(\App\RegularType::RegularClass[$item->regular_class_3]), 0, 10)}}</span></td>
|
||||
<td class="sm-item text-right">
|
||||
<span>{{ mb_substr(__($rc[$item->regular_class_3] ?? '-'), 0, 10) }}</span>
|
||||
</td>
|
||||
|
||||
<!-- 定期種別6 -->
|
||||
<td class='sm-item text-right'><span>{{mb_substr(__(\App\RegularType::RegularClass[$item->regular_class_6]), 0, 10)}}</span></td>
|
||||
<td class="sm-item text-right">
|
||||
<span>{{ mb_substr(__($rc[$item->regular_class_6] ?? '-'), 0, 10) }}</span>
|
||||
</td>
|
||||
|
||||
<!-- 定期種別12 -->
|
||||
<td class='sm-item text-right'><span>{{mb_substr(__(\App\RegularType::RegularClass[$item->regular_class_12]), 0, 10)}}</span></td>
|
||||
<td class="sm-item text-right">
|
||||
<span>{{ mb_substr(__($rc[$item->regular_class_12] ?? '-'), 0, 10) }}</span>
|
||||
</td>
|
||||
|
||||
<!-- 備考 -->
|
||||
<td class='sm-item text-right'><span>{{mb_substr($item->memo, 0, 10)}}</span></td>
|
||||
<td class="sm-item text-right">
|
||||
<span>{{ mb_substr($item->memo ?? '-', 0, 10) }}</span>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- /.row -->
|
||||
</div><!-- /.container-fluid -->
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- /.content -->
|
||||
|
||||
@endsection
|
||||
@ -366,6 +366,12 @@
|
||||
'seals',
|
||||
'jurisdiction_parkings',
|
||||
];?>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li class="nav-item has-treeview @if(in_array(app('router')->currentRouteName(),$route )) menu-open @endif">
|
||||
<a href="#" class="nav-link @if(in_array(app('router')->currentRouteName(), $route)) active @endif">
|
||||
<i class="nav-icon fa fa-th"></i>
|
||||
@ -374,195 +380,49 @@
|
||||
<i class="right fa fa-angle-down"></i>
|
||||
</p>
|
||||
</a>
|
||||
{{--
|
||||
Laravel 12移行時に一時的にコメントアウト:routeが未定義のため
|
||||
<ul class="nav nav-treeview" style="display: block;">
|
||||
<li class="nav-item">
|
||||
<a href="{{route('users')}}" class="nav-link @if(app('router')->is('users')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{__('利用者マスタ')}}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{route('regular_contracts')}}" class="nav-link @if(app('router')->is('regular_contracts')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{__('定期契約マスタ')}}</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="{{route('prices')}}" class="nav-link @if(app('router')->is('prices')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{__('駐輪場所、料金マスタ')}}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{route('opes')}}" class="nav-link @if(app('router')->is('opes')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{__('オペレータマスタ')}}</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="{{route('parks')}}" class="nav-link @if(app('router')->is('parks')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{__("駐輪場マスタ")}}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{route('settlement_transactions')}}" class="nav-link @if(app('router')->is('settlement_transactions')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{__('決済トランザクション')}}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{route('print_areas')}}" class="nav-link @if(app('router')->is('print_areas')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{__("シール印刷範囲マスタ")}}</p>
|
||||
</a>
|
||||
</li>
|
||||
--}}
|
||||
|
||||
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="./example.html" class="nav-link">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>定期予約マスタ</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="{{route('ptypes')}}" class="nav-link @if(app('router')->is('ptypes')) active @endif">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>{{__('駐輪分類マスタ')}}</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="./example.html" class="nav-link">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>駐輪車室マスタ</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="{{route('usertypes')}}" class="nav-link @if(app('router')->is('usertypes')) active @endif">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>{{__('利用者分類マスタ')}}</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
<!-- <li class="nav-item">
|
||||
<a href="{{ route('neighbor_stations') }}" class="nav-link">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>近傍駅マスタ</p>
|
||||
</a>
|
||||
</li> -->
|
||||
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="./example.html" class="nav-link">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>区マスタ</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="./example.html" class="nav-link">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>消費税マスタ</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="{{route('managers')}}" class="nav-link @if(app('router')->is('managers')) active @endif">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>{{__("駐車場管理者マスタ")}}</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="./example.html" class="nav-link">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>デバイス管理</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="{{route('operator_ques')}}" class="nav-link @if(app('router')->is('operator_ques')) active @endif">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>{{__("オペレータキュー")}}</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('regular_types') }}" class="nav-link @if(app('router')->is('regular_types')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{ __("定期種別マスタ") }}</p>
|
||||
</a>
|
||||
</li>
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="{{route('seals')}}" class="nav-link @if(app('router')->is('seals')) active @endif">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>{{__("シール発行履歴")}}</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="{{route('jurisdiction_parkings')}}" class="nav-link @if(app('router')->is('jurisdiction_parkings')) active @endif">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>{{__("管轄駐輪場")}}</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
{{--<li class="nav-item">--}}
|
||||
{{--<a href="./example.html" class="nav-link">--}}
|
||||
{{--<i class="fa fa-circle-o nav-icon"></i>--}}
|
||||
{{--<p>参照マスタ予約切り替え</p>--}}
|
||||
{{--</a>--}}
|
||||
{{--</li>--}}
|
||||
|
||||
|
||||
<li class="nav-item has-treeview">
|
||||
<a href="#" class="nav-link">
|
||||
<i class="fa fa-th nav-icon"></i>
|
||||
<p>
|
||||
駐輪場マスタ
|
||||
<p>{{ __("駐輪場マスタ") }}
|
||||
<i class="right fa fa-angle-down"></i>
|
||||
</p>
|
||||
</a>
|
||||
<ul class="nav nav-treeview">
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('regular_types') }}" class="nav-link @if(app('router')->is('regular_types')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{ __("定期種別マスタ") }}</p>
|
||||
<a href="{{ route('regular_types') }}" class="nav-link pl-4 @if(app('router')->is('regular_types')) active @endif">
|
||||
<p class="mb-0">{{ __("定期種別マスタ") }}</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('neighbor_stations') }}" class="nav-link">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{ __("近傍駅マスタ") }}</p>
|
||||
<a href="{{ route('neighbor_stations') }}" class="nav-link pl-4 @if(app('router')->is('neighbor_stations')) active @endif">
|
||||
<p class="mb-0">{{ __("近傍駅マスタ") }}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('terms') }}" class="nav-link @if(app('router')->is('terms')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{ __("利用契約マスタ") }}</p>
|
||||
<a href="{{ route('terms') }}" class="nav-link pl-4 @if(app('router')->is('terms')) active @endif">
|
||||
<p class="mb-0">{{ __("利用契約マスタ") }}</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('jurisdiction_parkings') }}" class="nav-link @if(app('router')->is('jurisdiction_parkings')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{ __("管轄駐輪場マスタ") }}</p>
|
||||
<a href="{{ route('jurisdiction_parkings') }}" class="nav-link pl-4 @if(app('router')->is('jurisdiction_parkings')) active @endif">
|
||||
<p class="mb-0">{{ __("管轄駐輪場マスタ") }}</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('print_areas') }}" class="nav-link @if(app('router')->is('print_areas')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{ __("シール印刷範囲マスタ") }}</p>
|
||||
<a href="{{ route('print_areas') }}" class="nav-link pl-4 @if(app('router')->is('print_areas')) active @endif">
|
||||
<p class="mb-0">{{ __("シール印刷範囲マスタ") }}</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('contract_allowable_cities') }}" class="nav-link @if(app('router')->is('contract_allowable_cities')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{ __("契約許容市区マスタ") }}</p>
|
||||
<a href="{{ route('contract_allowable_cities') }}" class="nav-link pl-4 @if(app('router')->is('contract_allowable_cities')) active @endif">
|
||||
<p class="mb-0">{{ __("契約許容市区マスタ") }}</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('managers') }}" class="nav-link @if(app('router')->is('managers')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{ __("駐輪場管理者マスタ") }}</p>
|
||||
<a href="{{ route('managers') }}" class="nav-link pl-4 @if(app('router')->is('managers')) active @endif">
|
||||
<p class="mb-0">{{ __("駐輪場管理者マスタ") }}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@ -574,27 +434,25 @@
|
||||
<a href="#" class="nav-link">
|
||||
<i class="fa fa-credit-card nav-icon"></i>
|
||||
<p>
|
||||
決済マスタ
|
||||
{{ __("決済マスタ") }}
|
||||
<i class="right fa fa-angle-down"></i>
|
||||
</p>
|
||||
</a>
|
||||
<ul class="nav nav-treeview">
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('tax') }}" class="nav-link @if(app('router')->is('tax')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{ __("消費税マスタ") }}</p>
|
||||
<a href="{{ route('tax') }}" class="nav-link pl-4 @if(app('router')->is('tax')) active @endif">
|
||||
<p class="mb-0">{{ __('消費税マスタ') }}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('payments') }}" class="nav-link pl-4 @if(app('router')->is('payments')) active @endif">
|
||||
<p class="mb-0">{{ __("決済情報マスタ") }}</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('payments') }}" class="nav-link @if(app('router')->is('payments')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{ __("決済情報マスタ") }}</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('settlement_transactions') }}" class="nav-link @if(app('router')->is('settlement_transactions')) active @endif">
|
||||
<i class="fa fa-circle-o nav-icon"></i>
|
||||
<p>{{ __("決済トランザクション") }}</p>
|
||||
<a href="{{ route('settlement_transactions') }}" class="nav-link pl-4 @if(app('router')->is('settlement_transactions')) active @endif">
|
||||
<p class="mb-0">{{ __("決済トランザクション") }}</p>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user