Compare commits
6 Commits
6aebe63251
...
7e2a25d37b
| Author | SHA1 | Date | |
|---|---|---|---|
| 7e2a25d37b | |||
| 184860862b | |||
| 57bae5bcf4 | |||
| 63efbb9481 | |||
| f29ba66745 | |||
| ebd3a65096 |
@ -10,7 +10,7 @@
|
|||||||
{{ $errors->first('month') }}
|
{{ $errors->first('month') }}
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
<form class="row form" action="{{ url('regular_contract/create_select_period') }}" method="post">
|
<form class="row form" action="{{ route('regular_contract.create_select_period') }}" method="post">
|
||||||
@csrf
|
@csrf
|
||||||
<input type="hidden" name="contract_id" value="{{ $contract_id }}">
|
<input type="hidden" name="contract_id" value="{{ $contract_id }}">
|
||||||
<div class="col-12 col-md-8 offset-0 offset-md-2 mb30">
|
<div class="col-12 col-md-8 offset-0 offset-md-2 mb30">
|
||||||
|
|||||||
@ -125,7 +125,7 @@ Route::get('/regular-contract/upload_identity_success', [RegularContractCreateCo
|
|||||||
Route::get('/regular-contract/upload_identity_fail', [RegularContractCreateController::class, 'showUploadIdentityFail'])->name('regular_contract.upload_identity_fail');
|
Route::get('/regular-contract/upload_identity_fail', [RegularContractCreateController::class, 'showUploadIdentityFail'])->name('regular_contract.upload_identity_fail');
|
||||||
Route::get('regular_contract/create_confirm', [RegularContractCreateController::class, 'createConfirm'])->name('regular_contract.create_confirm');
|
Route::get('regular_contract/create_confirm', [RegularContractCreateController::class, 'createConfirm'])->name('regular_contract.create_confirm');
|
||||||
Route::post('/regular_contract/create_confirm_next/{contract_id}', [RegularContractCreateController::class, 'createConfirmNext'])->name('regular_contract.create_confirm_next');
|
Route::post('/regular_contract/create_confirm_next/{contract_id}', [RegularContractCreateController::class, 'createConfirmNext'])->name('regular_contract.create_confirm_next');
|
||||||
Route::post('regular_contract/create_select_period', [RegularContractCreateController::class, 'selectPeriod'])->name('regular_contract.create_select_period');
|
Route::match(['get', 'post'], 'regular_contract/create_select_period', [RegularContractCreateController::class, 'selectPeriod'])->name('regular_contract.create_select_period');
|
||||||
|
|
||||||
// 定期契約更新
|
// 定期契約更新
|
||||||
Route::get('regular_contract/update', [RegularContractController::class, 'showInfo'])->name('regular_contract.update');
|
Route::get('regular_contract/update', [RegularContractController::class, 'showInfo'])->name('regular_contract.update');
|
||||||
@ -145,6 +145,14 @@ Route::get('park_search', [RegularContractCreateController::class, 'show'])->nam
|
|||||||
|
|
||||||
// 空き待ち状況確認
|
// 空き待ち状況確認
|
||||||
Route::get('park_waitlist', [ParkWaitlistController::class, 'index'])->name('park_waitlist.index');
|
Route::get('park_waitlist', [ParkWaitlistController::class, 'index'])->name('park_waitlist.index');
|
||||||
|
Route::get('/park-waitlist/check', [ParkWaitlistController::class, 'check'])->name('park_waitlist.check');
|
||||||
|
Route::get('/park-waitlist/create', [ParkWaitlistController::class, 'create'])->name('park_waitlist.create');
|
||||||
|
Route::get('/api/park-detail-wait/{reserve_id}', [ParkDetailController::class, 'showWait']);
|
||||||
|
Route::get('/park_waitlist/cancel/{reserve_id}', [ParkWaitlistController::class, 'cancelConfirm'])->name('park_waitlist.cancel');
|
||||||
|
Route::post('/park_waitlist/cancel/{reserve_id}', [ParkWaitlistController::class, 'cancel'])->name('park_waitlist.cancel.post');
|
||||||
|
Route::get('/park_waitlist/cancel/complete', function () {
|
||||||
|
return view('park_waitlist.cancel_complete');
|
||||||
|
})->name('park_waitlist.cancel.complete');
|
||||||
|
|
||||||
// 会員へのお知らせ
|
// 会員へのお知らせ
|
||||||
Route::get('/user_information', [UserInformationController::class, 'index'])->name('user_information.index');
|
Route::get('/user_information', [UserInformationController::class, 'index'])->name('user_information.index');
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user