tusharthe/online-users-laravel

Show the users online in your Laravel application

1.0 2018-03-25 13:52 UTC

This package is not auto-updated.

Last update: 2025-09-28 10:16:27 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