
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.
Setup AMP (Accelerated Mobile Pages) In PHP Laravel
Setup Docker for NodeJs, MongoDB, MongoDB Compass
Install Packages Parallel For Faster Development In Composer
Add Google ADS In AMP (Accelerated Mobile Pages) Website
Detect AdBlocker With Javascript And Increase Website Ads Revenue
Why And How To Use PHP PDO With CRUD Examples
Laravel Clear Cache Of Route, View, Config Command
Generate Fake Data In PHP With Faker
Lazy Load YouTube And Other Videos In Website
Laravel 7.x Multiple Database Connections, Migrations, Relationships & Querying
Generate RSS Feeds in PHP Laravel
Free SSL Certificate For CPanel
Proper Way To Validate MIME Type Of Files While Handling File Uploads In PHP