
Good content takes time and effort to come up with.
Please consider supporting us by just disabling your AD BLOCKER and reloading this page again.
In this article, I will show you how to increase the session timeout in Laravel.
NOTE: Laravel session timeouts are set in minutes
We will be covering the following topics
Increase the session timeout for 1 year.
.env
SettingsSESSION_LIFETIME=525600
365 days * 24 hours * 60 minutes = 525600 minutes
You can even directly edit lifetime
in the session config settings as shown below.
As you see by default it will read from the .env
file. If you by chance delete the SESSION_LIFETIME
in .env
file then it will add 43200 minutes.
<?php
use Illuminate\Support\Str;
return [
.......
'lifetime' => env('SESSION_LIFETIME', 43200),
.......
];
Hope you got to know how to increase the session timeout in Laravel. Don't forget to share with your friends.
Dependency Dropdowns With Javascript And PHP
Cache Static Files With NGINX Server
Lazy Load Images In Chrome With This Simple Trick
Securely Connect Server MYSQL DB From Sequel Pro / MYSQL Workbench
Free SSL Certificate In cPanel With ZeroSSL & Certbot
Client-Side DataTable, Adding Super Powers To HTML Table
Lazy Load YouTube And Other Videos In Website
Install Linux, NGINX, MYSQL, PHP (LEMP Stack) on Ubuntu
Simple Way To Create Resourceful API Controller In Laravel
Composer Install v/s Composer Update
Proper Way To Validate MIME Type Of Files While Handling File Uploads In PHP