お知らせ画面の追加

This commit is contained in:
shibafu
2017-11-03 20:38:09 +09:00
parent edcc2bceaf
commit d94c444b55
10 changed files with 158 additions and 7 deletions

View File

@@ -26,4 +26,7 @@ Route::middleware('auth')->group(function () {
Route::get('/checkin', 'EjaculationController@create')->name('checkin');
Route::post('/checkin', 'EjaculationController@store')->name('checkin');
Route::delete('/checkin/{id}', 'EjaculationController@destroy')->name('checkin.destroy');
});
});
Route::get('/info', 'InfoController@index')->name('info');
Route::get('/info/{id}', 'InfoController@show')->where('id', '[0-9]+')->name('info.show');