ユーザーがログインし、非アクティブのままである場合、そのシステムがユーザーを自動的にログアウトしてから何秒ですか?この設定を変更するには?
認証を処理するためにセッションドライバーを使用していると仮定すると、アイドルセッションの期間を/app/config/session.php
ファイルで期限切れに変更できます。
/*
|--------------------------------------------------------------------------
| Session Lifetime
|--------------------------------------------------------------------------
|
| Here you may specify the number of minutes that you wish the session
| to be allowed to remain idle before it expires. If you want them
| to immediately expire on the browser closing, set that option.
|
*/
'lifetime' => 120,
'expire_on_close' => false,