tusharthe / online-users-laravel
Show the users online in your Laravel application
Installs: 1 162
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:laravel
This package is not auto-updated.
Last update: 2025-08-17 09:38:22 UTC
README
Show the users online in your Laravel application
Instalation
install directly via composer
composer require tusharthe/online-users-laravel
After composer command, register service prodiver in app/config/app.php under providers:
tusharthe\OnlineUsers\OnlineUsersServiceProvider::class,
After this, add new middleware in app/Http/Kernel.php :
\tusharthe\OnlineUsers\Middleware\UsersOnline::class,
After this, add the Library (trait) in your model User in app/User.php:
class User extends Authenticatable { use \tusharthe\OnlineUsers\Library\OnlineUsers; ... }
After this, add the event in your EventServiceProvider in app/Providers/EventServiceProvider.php
under 'protected $listen = ' :
NOTE: in laravel 5.5 or above aumatically register event
'Illuminate\Auth\Events\Logout' => [ 'tusharthe\OnlineUsers\Listeners\LogoutListener', ],
Finally run :
php artisan vendor:publish for add the namespaces & select appropriate Provider tusharthe\OnlineUsers\OnlineUsersServiceProvider.
How To Use:
To get all Online Users just use the method allOnline() Like below:
$user = new User; $user->allOnline();
Or if you want to check if a specific user is online or not use the method isOnline():
$user = User::find($id); $user->isOnline();
You Can also able to to set timming of user in app/config/OnlineUser.php
Default 3 min is set.
Laravel compatibility
5.4 or above