Laravel Packages

Manage a User's Browser Sessions in Laravel

Published
Manage a User's Browser Sessions in Laravel image

The Browser Sessions Laravel package by Chris Mellor enables users to manage and monitor their active browser sessions. Using this package, you can see user sessions that are active on other devices and provides options to terminate unrecognized or all sessions, enhancing account security:

use Cjmellor\BrowserSessions\Facades\BrowserSessions;
 
// Retrieve a user's Current Sessions
BrowserSessions::sessions();
/*
[
{
"device": {
"browser": "Safari",
"desktop": true,
"mobile": false,
"platform": "OS X"
},
"ip_address": "127.0.0.1",
"is_current_device": true,
"last_active": "1 second ago"
}
]
*/

You can even log the user out of all other browser sessions besides their current session with:

BrowserSessions::logoutOtherBrowserSessions();

Lastly, you can get the user's last activity with this method:

BrowserSessions::getUserLastActivity();
// or
BrowserSessions::getUserLastActivity(human: true);

To get started with this package, you can find all the installation details on Github at cjmellor/browser-sessions

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article