
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.
Simple Way To Create Resourceful API Controller In Laravel
Install Letsencrypt SSL Certificate for RabbitMQ Server and RabbitMQ Management Tool
Laravel Last Executed Query In Plain SQL Statement For Debugging
Automate Repeating Tasks In Linux Server With Cronjobs
Basic Server Security Setup For Ubuntu / Linux
Install Linux, NGINX, MYSQL, PHP (LEMP Stack) on Ubuntu
PHP Built-In Web Server & Testing Your Development Project In Mobile Without Any Software
Install Linux, Apache, MYSQL, PHP (LAMP Stack) on Ubuntu
Increase Session Timeout In Laravel
Plain PHP Resumable Large File Uploads In Chunks Using FlowJs
Google, Twitter, GitHub, Facebook & Many Other Social Generic Logins With PHP Laravel Socialite