Skip to content
Snippets Groups Projects
Commit 49a578fb authored by Tibo's avatar Tibo
Browse files

Add home route

parent 833d8cf9
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,10 @@ Route::get('/', function () {
Auth::routes(['register'=>false]);
Route::get("home", function() {
return redirect(action("OrganizationController@index"));
});
Route::get('app/dashboard', function() {
//return view("dashboard");
return redirect(action("OrganizationController@index"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment