laravel session
/** * Static method */ Session::put('key', $value); // Set session variable Session::get('key') // Get session variable /** * Instance method */ session(['key' => $value]); // Set session variable session('key'); // Get session variable