Compare commits

..

No commits in common. "7e2a25d37b4921685777bc9b6176c08c5d3b2ebf" and "6aebe632516f63162ea4118782f58892c8cbb04f" have entirely different histories.

2 changed files with 2 additions and 10 deletions

View File

@ -10,7 +10,7 @@
{{ $errors->first('month') }}
</div>
@endif
<form class="row form" action="{{ route('regular_contract.create_select_period') }}" method="post">
<form class="row form" action="{{ url('regular_contract/create_select_period') }}" method="post">
@csrf
<input type="hidden" name="contract_id" value="{{ $contract_id }}">
<div class="col-12 col-md-8 offset-0 offset-md-2 mb30">

View File

@ -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/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::match(['get', 'post'], 'regular_contract/create_select_period', [RegularContractCreateController::class, 'selectPeriod'])->name('regular_contract.create_select_period');
Route::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');
@ -145,14 +145,6 @@ Route::get('park_search', [RegularContractCreateController::class, 'show'])->nam
// 空き待ち状況確認
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');