チェックイン修正を雑に書いた

これ日時はいじれないほうが良い気がするな
This commit is contained in:
shibafu
2018-01-04 16:53:33 +09:00
parent 7a3a1c1ada
commit 2fe3d7ac49
5 changed files with 147 additions and 6 deletions

View File

@@ -26,6 +26,8 @@ Route::middleware('auth')->group(function () {
Route::get('/checkin', 'EjaculationController@create')->name('checkin');
Route::post('/checkin', 'EjaculationController@store')->name('checkin');
Route::get('/checkin/{id}', 'EjaculationController@show')->name('checkin.show');
Route::get('/checkin/{id}/edit', 'EjaculationController@edit')->name('checkin.edit');
Route::put('/checkin/{id}', 'EjaculationController@update')->name('checkin.update');
Route::delete('/checkin/{id}', 'EjaculationController@destroy')->name('checkin.destroy');
});