Skip to content

Releases: shetabit/visitor

v3.1.0

22 Feb 16:22
e3ba504
Compare
Choose a tag to compare
Merge pull request #21 from sepisoltani/sepisoltani/table-name-config…

fix importing Eloquent/Model bug

04 Sep 09:04
f82da13
Compare
Choose a tag to compare
Merge pull request #17 from lloricode/bugfix/user

Add import in Visitable trait

support Laravel 8.*

02 Sep 05:35
db949fc
Compare
Choose a tag to compare
Merge pull request #16 from lloricode/patch-1

Add support for laravel 8

add ability to not save some requests on some routes

07 Aug 16:20
94b6bd8
Compare
Choose a tag to compare

add except for routes to dont save request , dont store value of passwords without hash

fix online users list

21 Mar 09:33
b63aa72
Compare
Choose a tag to compare
  • fix online users list

support Laravel 7.*

04 Mar 05:51
Compare
Choose a tag to compare

now we support Laravel 7.*

Fix userAgent()

05 Dec 07:40
4d60c06
Compare
Choose a tag to compare

Return empty string instead of null in userAgent()

Recognize online visitors

15 Oct 10:05
Compare
Choose a tag to compare

Retrieve and Determine Online users

use Shetabit\Visitor\Traits\Visitor in your User class at first.

then you can retrieve online users which are instance of User class and determine if a user is online.

visitor()->onlineVisitors(User::class); // returns collection of online users
User::online()->get(); // another way

visitor()->isOnline($user); // determines if the given user is online
$user->isOnline(); // another way

First release

14 Oct 14:21
Compare
Choose a tag to compare

This is the first release :)