Setting a piece of data from the session with global session helper method

// Setting a piece of data from the session
$value = session('key', 'value');


Another way

session(['key' => 'value']);