Download the PHP package torgodly/visitor without Composer
On this page you can find all versions of the php package torgodly/visitor. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download torgodly/visitor
More information about torgodly/visitor
Files in torgodly/visitor
Package visitor
Short Description Laravel visitor
License MIT
Homepage https://github.com/torgodly/visitor
Informations about the package visitor
Laravel Visitor
This is a laravel package to extract and access visitors' information such as browser
, ip
, device
and etc.
In this package, you can recognize online users and determine if a user is online or not
Install
Via composer
Configure
If you are using Laravel 5.5 or higher then you don't need to add the provider and alias.
Then, run the below commands to publish migrations and create tables
How to use
You can access to visitor's information
using $request->visitor()
in your controllers , and you can access to the visitor's information using visitor()
helper function any where.
We have the below methods to retrieve a visitor's information:
device
: device's nameplatform
: platform's namebrowser
: browser's namelanguages
: language's nameip
: client's iprequest
: the whole request inputsuseragent
: the whole useragentisOnline
: determines if current (or given) user is online
Store Logs
You can create logs using the visit
method like the below
use torgodly\Visitor\Traits\Visitable
trait in your models, then you can save visit's log for your models like the below
Model views can be loaded using visits
relation.
You can count model visits like the below
unique users can be counted by their IP and by model.
use torgodly\Visitor\Traits\Visitor
in your User
class, then you can run below codes
Retrieve and Determine Online users
use torgodly\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.
Automatic logging
Your application can store visitor's log automatically using LogVisits
middleware.
Add the torgodly\Visitor\Middlewares\LogVisits
middleware if you want to save logs automatically.
The middleware will store logs for models which has binded in router (router model binding) and has used torgodly\Visitor\Traits\Visitable
trait.
All versions of visitor with dependencies
illuminate/support Version ^5.1|6.*|7.*|8.*|9.*|10.*
jenssegers/agent Version ^2.6
ua-parser/uap-php Version ^3.9