Laravel Dashboard; Added routes and a PagesController

This commit is contained in:
2017-09-17 18:41:58 +02:00
parent f36529fe53
commit dd5e759184
3 changed files with 117 additions and 0 deletions

View File

@@ -14,3 +14,5 @@
Route::get('/', function () {
return view('welcome');
});
Route::get('/dashboard', 'PagesController@dashboard');