Я пытаюсь реализовать Запомнить меня в Laravel Auth. Если пользователь выходит из системы и посещает страницу входа, как я могу заполнить поле имени пользователя и пароля в форме входа?
Теперь при выходе из системы он очищает куки.
\ Поставщика \ Laravel \ рамки \ SRC \ Осветите \ Auth \ Guard.php
public function logout() {
$user = $this->user();
// If we have an event dispatcher instance, we can fire off the logout event
// so any further processing can be done. This allows the developer to be
// listening for anytime a user signs out of this application manually.
$this->clearUserDataFromStorage();
if ( ! is_null($this->user))
{
$this->refreshRememberToken($user);
}
if (isset($this->events))
{
$this->events->fire('auth.logout', [$user]);
}
// Once we have fired the logout event we will clear the users out of memory
// so they are no longer available as the user is no longer considered as
// being signed into this application and should not be available here.
$this->user = null;
$this->loggedOut = true;
}
заранее спасибо
Задача ещё не решена.
Других решений пока нет …