I have the following url
Route::get('faq', 'HomeController@faq');
I want to add an alias to that url so that when I log in I stay like this
but refining the url "faq" I do not know if the .htaccess can be
In Laravel 5.1 it was like this:
Route::get( 'faq' , 'HomeController@faq' );
Route::get( 'preguntas-frecuentes', [ 'as' => 'faq', 'uses' => 'HomeController@faq' ]);