Одна строка кода из документации: \Auth::login(1,true);
Выдает ошибку :
FatalThrowableError in SessionGuard.php line 439:
Type error: Argument 1 passed to Illuminate\Auth\SessionGuard::login() must implement interface Illuminate\Contracts\Auth\Authenticatable, integer given
To log a user into the application by their ID, you may use the loginUsingId method. This method accepts the primary key of the user you wish to authenticate:
Auth::loginUsingId(1);
// Login and "remember" the given user...
Auth::loginUsingId(1, true);
Auth::loginUsingId(1, true); - ошибки нет
Но и авторизация не происходит
\Auth::id() уже на следующем запросе возвращает null
Стандартная авторизация при этом работает