This commit is contained in:
parent
6aa82dde3b
commit
8b42340915
File diff suppressed because it is too large
Load Diff
30
resources/views/placeholder.blade.php
Normal file
30
resources/views/placeholder.blade.php
Normal file
@ -0,0 +1,30 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('title', 'プレースホルダー')
|
||||
|
||||
@section('content')
|
||||
<div class="content-header">
|
||||
<div class="container-fluid">
|
||||
<div class="row mb-2">
|
||||
<div class="col-sm-6">
|
||||
<h1 class="m-0">このページは未実装です</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-md-6 offset-md-3">
|
||||
<div class="alert alert-info" role="alert">
|
||||
<h4 class="alert-heading">準備中です</h4>
|
||||
<p>このページは現在準備中です。</p>
|
||||
<hr>
|
||||
<p class="mb-0">リクエストコード: {{ request()->query('code', 'N/A') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
@ -532,6 +532,47 @@ Route::middleware('auth')->group(function () {
|
||||
->where(['id' => '[0-9]+'])
|
||||
->name('opes.permissions_by_feature');
|
||||
|
||||
// 仮ルート(未実装機能用)
|
||||
Route::get('/placeholder', function () {
|
||||
return view('placeholder');
|
||||
})->name('placeholder');
|
||||
|
||||
Route::get('/refund', function () {
|
||||
return view('placeholder');
|
||||
})->name('refund'); // SWA-13 返金処理
|
||||
|
||||
Route::get('/tag-reissue', function () {
|
||||
return view('placeholder');
|
||||
})->name('tag.reissue'); // SWA-05 タグ再発行
|
||||
|
||||
Route::get('/seal-reissue', function () {
|
||||
return view('placeholder');
|
||||
})->name('seal.reissue'); // SWA-06 シール再発行
|
||||
|
||||
Route::get('/sales-report', function () {
|
||||
return view('placeholder');
|
||||
})->name('sales.report'); // SWA-17 売上年報/月報/日報
|
||||
|
||||
Route::get('/sales-detail', function () {
|
||||
return view('placeholder');
|
||||
})->name('sales.detail'); // SWA-18 売上詳細
|
||||
|
||||
Route::get('/ptype', function () {
|
||||
return view('placeholder');
|
||||
})->name('ptype'); // SWA-29 駐輪分類マスタ
|
||||
|
||||
Route::get('/jurisdiction-parking', function () {
|
||||
return view('placeholder');
|
||||
})->name('jurisdiction.parking'); // SWA-37 駐輪規定読込記録
|
||||
|
||||
Route::get('/lottery-master', function () {
|
||||
return view('placeholder');
|
||||
})->name('lottery.master'); // SWA-44 駐輪場抽選応募マスタ
|
||||
|
||||
Route::get('/lottery-setting', function () {
|
||||
return view('placeholder');
|
||||
})->name('lottery.setting'); // SWA-45 抽選申込設定マスタ
|
||||
|
||||
}); // ensure.otp.verified ミドルウェアグループの閉じ括弧
|
||||
}); // auth ミドルウェアグループの閉じ括弧
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user