Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get online users in laravel

I have one user for login to demo of my script.
I want get how many people online now.
I use laravel 5.2
What am I do?

like image 363
paranoid Avatar asked Oct 21 '25 04:10

paranoid


2 Answers

You could keep sessions in a DB and use last_activity column to determine how many users are currently online.

https://laravel.com/docs/5.1/session#introduction

like image 164
Alexey Mezenin Avatar answered Oct 22 '25 16:10

Alexey Mezenin


There is a laravel plugin to achieve this. here's the link :https://github.com/thomastkim/laravel-online-users

like image 37
jaysingkar Avatar answered Oct 22 '25 17:10

jaysingkar