auth:用户在模块化控制器laravel中显示空白

时间:2018-08-09 12:49:53

标签: laravel laravel-authorization laravel-authentication

我正在使用laravel中的自定义模块,并且无法访问

print_r(Auth::user()); 

它显示空白。

我的路线在模块内部

Route::group(['module' => 'ScreenColors', 'middleware' => ['web'], 
   'namespace' => 'App\Modules\ScreenColors\Controllers'], 
    function() {
      Route::get('/screen_colors', 'ScreenColorsController@index');
    }
);

我的模块目录为app\Modules\ScreenColors 使用ArtemSchander模块软件包

如何将身份验证详细信息访问模块控制器?谢谢。

0 个答案:

没有答案