PHPackages                             hardevine/laravel-session-tracker - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. hardevine/laravel-session-tracker

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

hardevine/laravel-session-tracker
=================================

This package provides session tracking functionalities, multisession management and user device management features for laravel applications.

1.0.7(6y ago)312.0kMITPHPPHP &gt;=5.4.0

Since Jan 17Pushed 6y ago1 watchersCompare

[ Source](https://github.com/hardevine/laravel-session-tracker)[ Packagist](https://packagist.org/packages/hardevine/laravel-session-tracker)[ RSS](/packages/hardevine-laravel-session-tracker/feed)WikiDiscussions master Synced yesterday

READMEChangelog (7)Dependencies (3)Versions (9)Used By (0)

Laravel Session Tracker
=======================

[](#laravel-session-tracker)

This package provides session tracking functionalities, multisession management and user device management features for laravel applications.

Features
--------

[](#features)

- Session Management
- Session Log
- Multiple session for users
- Request Log
- User Devices

Installation (Laravel 5.x)
--------------------------

[](#installation-laravel-5x)

In composer.json:

```
"require": {
    "hardevine/laravel-session-tracker" "1.0.0"
}

```

Run:

```
composer update

```

Note: For v 5.5 Auto-discovery takes care.

Add the service provider to `config/app.php` under `providers`:

```
'providers' => [
    Hamedmehryar\SessionTracker\SessionTrackerServiceProvider::class,
]

```

Add the SessionTracker alias to `config/app.php` under `aliases`:

```
    'aliases' => [
        'SessionTracker' => 'Hamedmehryar\SessionTracker\SessionTrackerFacade',
    ]

```

Update config file to reference your login and logout route names:

```
config/sessionTracker.php

```

Migrate your database:

```
php artisan migrate

```

Add the trait to your user model:

```
use Hamedmehryar\SessionTracker\Traits\SessionTrackerUserTrait;

class User extends Model {
	use SessionTrackerUserTrait;
}

```

Add the DeviceCheck middleware in your kernel.php file:

```
protected $middleware = [
		'Hamedmehryar\SessionTracker\Middleware\DeviceCheck',
	];

```

In Your routes.php file you should add 'session' middleware for routes which you want to keep track of:

```
Route::group(['middleware'=>'session'], function(){

    Route::get('your-route', 'YourController@yourAction');

});

```

Usage
-----

[](#usage)

From your user models:

```
$user->sessions(); //returns all the sessions of the user form the begining of usage of the package

$user->activeSessions(); //returns all currently active sessions for the user. (User may be logged in with same credentials from different devices)

$user->activeSessions(true); //return all active sessions for the user except the current session.

$user->getFreshestSession(); //Returns the most recent session of the user

$user->devices(); //Returns the collection of users saved trusted devices.

$user->devicesUids(); //Returns array of users saved trusted devices Ids.

```

From SessionTrackerFacade:

```
SessionTracker::startSession(); //Creates a new session for current user

SessionTracker::endSession(); //End the current session for the current user

SessionTracker::endSession(true); //End the current session for the current user and forgets the session

SessionTracker::renewSession(); //Restarts the ended session which is not forgotten for the current user. Usefull for restarting the session after locking it for inactivity

SessionTracker::refreshSession($request); //Keeps the session alive for each request. Useful in middleware

SessionTracker::logSession($request); //Logs the current request for the current session. (request logs stored in sessiontracker_session_requests table)

SessionTracker::isSessionInactive(); //Checks if the session is inactive. Determines the inactiveness by subtracting the **delay between last activity and current time** from the **inactivity_seconds** in sessionTracker config file.

SessionTracker::isSessionInactive($user); //Checks if the session for a specific user is inactive. Determines the inactiveness by subtracting the **delay between last activity and current time** from the **inactivity_seconds** in sessionTracker config file.

SessionTracker::blockSession($sessionId); //Blocks (ends and forgets) the current session for the user. (Useful if the user wants to controll all her sessions and block a specific session in a specific location)

SessionTracker::sessionRequests($sessionId); //Returns all requests done by a specific session

SessionTracker::isSessionBlocked(); //Checks if current user does not have an active session

SessionTracker::lockSessionByCode(); //Locks a session by a security code to be unlocked by that code and returns the code. (Usefull for two-step authentication implementation)

SessionTracker::securityCode(); //Returns the security code (hash) for the locked session.

SessionTracker::isSessionLocked(); //Checks if the current session is locked by a security code.

SessionTracker::unlockSessionByCode($code); //Unlocks the locked session by passing the security code. (returns -1 if the code is invalid, -2 if it's expired and 0 if success)

SessionTracker::isUserDevice(); //Returns true if the current device is trusted by the user

SessionTracker::deleteDevice($id); //Deletes a trusted device for the user

SessionTracker::addUserDevice(); //Add the current device as trusted by the user

SessionTracker::forgotSession(); //Checks if the session if forgotten

SessionTracker::sessionId(); //Returns the sessionId for the current session

SessionTracker::deleteSession(); //Deletes and forgets the current session

SessionTracker::refreshSecurityCode(); //Renews the security code by which the current session is locked

```

Author
------

[](#author)

- [Hamed Mehryar](https://github.com/hamedmehryar)

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 64.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~131 days

Recently: every ~61 days

Total

8

Last Release

2482d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7b824f86a5d3521956ed6570841791dcbee090ca73ec417772e37abbc85d257b?d=identicon)[hardevine](/maintainers/hardevine)

---

Top Contributors

[![hamed-netlinks](https://avatars.githubusercontent.com/u/17270136?v=4)](https://github.com/hamed-netlinks "hamed-netlinks (33 commits)")[![hardevine](https://avatars.githubusercontent.com/u/1171618?v=4)](https://github.com/hardevine "hardevine (13 commits)")[![hamedmehryar](https://avatars.githubusercontent.com/u/6290979?v=4)](https://github.com/hamedmehryar "hamedmehryar (5 commits)")

### Embed Badge

![Health badge](/badges/hardevine-laravel-session-tracker/health.svg)

```
[![Health](https://phpackages.com/badges/hardevine-laravel-session-tracker/health.svg)](https://phpackages.com/packages/hardevine-laravel-session-tracker)
```

###  Alternatives

[lab404/laravel-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users.

2.3k16.4M48](/packages/lab404-laravel-impersonate)[santigarcor/laratrust

This package provides a flexible way to add Role-based Permissions to Laravel

2.3k5.4M43](/packages/santigarcor-laratrust)[overtrue/laravel-follow

User follow unfollow system for Laravel.

1.2k404.7k5](/packages/overtrue-laravel-follow)[corbosman/laravel-passport-claims

Add claims to Laravel Passport JWT Tokens

88655.9k](/packages/corbosman-laravel-passport-claims)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
