1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-01-29 10:59:49 +01:00

Add routes for all models

This commit is contained in:
Kovah 2018-08-23 01:09:48 +02:00
parent f57ef051bc
commit fe0f2f73bf
No known key found for this signature in database
GPG Key ID: AAAA031BA9830D7B

View File

@ -31,3 +31,9 @@ $this->get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm
$this->post('password/reset', 'Auth\ResetPasswordController@reset');
Route::get('/home', 'HomeController@index')->name('home');
// Model routes
Route::resource('categories', 'CategoryController');
Route::resource('links', 'LinkController');
Route::resource('notes', 'NoteController');
Route::resource('tags', 'TagController');