/*
|--------------------------------------------------------------------------
| 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' => 4320,
'expire_on_close' => false,
請將SESSION_LIFETIME=(以分鐘為單位的持續時間)變更為.env檔案中的值。
您可以透過更改config/session.php檔案中的lifetime值,來全域更改會話的生存時間:
現在,如果您想為每個使用者控制會話的生存時間,您需要在使用者登入之前設定此值。
您需要在LoginController中進行上述更改。