在 Laravel 5.2 中找不到类“App\Http\Controllers\Session”
2022-08-30 14:08:59
我正在使用Laravel 5.2中的会话。有我的控制器代码:
if (Session::has('panier'))
{
$panier = Session::get('panier');
}
我尝试从会话中获取值,但收到此错误:
FatalErrorException in ProduitsController.php line 106: Class 'App\Http\Controllers\Session' not found
我该如何解决?