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:
parent
f57ef051bc
commit
fe0f2f73bf
@ -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');
|
||||
|
Loading…
x
Reference in New Issue
Block a user