Not so the module works. When logging in with the value $remember = TRUE , you must send cookies for 2 weeks with a token, and write the token to the database. And it sends cookies until the browser is closed (nothing without writing to the database) and with Auth::instance()->logout($destroy = TRUE) does not delete the cookie, although it should.
That's what's in the controller
$login = Arr::get($_POST, 'login', ''); $password = Arr::get($_POST, 'password', ''); $remember = $_POST['remember']; $auth->login($login,$password, $remember); Here is the config auth.php
return array( 'driver' => 'ORM', 'hash_method' => 'sha256', 'hash_key' => '2, 4, 6, 7, 9, 15, 20, 23, 25, 30', 'lifetime' => 1209600, 'session_type' => Session::$default, 'session_key' => 'auth_user',