From 6c90cc2383cfbc2680224ad3425fc112470a0091 Mon Sep 17 00:00:00 2001 From: shibafu Date: Sat, 6 Jan 2018 19:50:16 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=81=E3=82=A7=E3=83=83=E3=82=AF=E3=82=A4?= =?UTF-8?q?=E3=83=B3=E3=81=AE=E5=80=8B=E5=88=A5=E3=83=9A=E3=83=BC=E3=82=B8?= =?UTF-8?q?=E3=81=8C=E3=83=AD=E3=82=B0=E3=82=A4=E3=83=B3=E8=A6=81=E6=B1=82?= =?UTF-8?q?=E3=81=97=E3=81=A6=E3=81=84=E3=81=9F=E3=81=AE=E3=82=92=E8=A7=A3?= =?UTF-8?q?=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 9c6712b..998f731 100644 --- a/routes/web.php +++ b/routes/web.php @@ -22,10 +22,10 @@ Route::get('/user/{name?}', 'UserController@profile')->name('user.profile'); Route::get('/user/{name}/stats', 'UserController@stats')->name('user.stats'); Route::get('/user/{name}/okazu', 'UserController@okazu')->name('user.okazu'); +Route::get('/checkin/{id}', 'EjaculationController@show')->name('checkin.show'); 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');