Laravel framework, you can enter the homepage without logging in. How to set up routing?
Laravel framework, you can enter the homepage without logging in. How to set up routing?
Just don’t put it in auth middleware.
Route::any('/', 'HomeController@index ');
You can use except in the controller, the key depends on how you write the middleware
<code>public function __construct() { $this->middleware('auth', ['except' => [ //排除的路由 ]]); }</code>