I am using sessions in Laravel 5.2 . There is my Controller code:
if (Session::has('panier'))
{
$panier = Session::get('panier');
}
I try just to get a value from the session, and I got this error:
FatalErrorException in ProduitsController.php line 106: Class 'App\Http\Controllers\Session' not found
How can I resolve it?