When im try access my.domain.com, the DefaultController function will be executed, but the AccountController function should be executed.
Route::get('/', [
'as' => 'index',
'uses' => 'DefaultController@getIndex'
]);
Route::group(['domain' => 'my.domain.com'], function(){
Route::group(['middleware' => 'auth'], function() {
Route::get('/', [
'as' => 'account.home',
'uses' => 'AccountController@getIndex'
]);
});
Route::group(['middleware' => 'guest'], function() {
Route::get('/login', [
'as' => 'auth.login',
'uses' => 'AuthController@getLogin'
]);
});
});