1
I’ve read in some places that the correct thing is to point the way to a controller and then redirect to a view. I do it even when I won’t pass any variable to that view?
In that case, I will have a "about us" page, where there will be only a static text describing the company, it is wrong that the route redirect directly to the view containing the text?
If you are using in the route file put
Route::get('sobre-nos', function(){ return view(""); });
?– novic