VisitLog is a simple Laravel 5 package that can be used to log visitor information and save it into database.
- Other than basic log such as IP, Browser and OS, it can also log Location information.
- Allows to log both unique and non-unique visits based on IP.
- Allows to cache the visits based on IP.
- Allows to log authenticated user info.
- Provides log viewer page out of box.
- Provides basic http authentication for app users.
- Ability to ban users by their IP
Note: VisitLog cannot detect same user/IP coming from some anonymizer so it cannot differentiate that.
Note: Info in above screenshot is fake.
- PHP >= 5.5.9
- Laravel 5
Install via composer
composer require sarfraznawaz2005/visitlog
For Laravel < 5.5:
Add Service Provider to config/app.php
in providers
section
Sarfraznawaz2005\VisitLog\VisitLogServiceProvider::class,
Add Facade to config/app.php
in aliases
section
'VisitLog' => Sarfraznawaz2005\VisitLog\Facades\VisitLog::class,
Run php artisan vendor:publish
to publish package's config and migration file. You should now have config/visitlog.php
file published. It will also publish migration file in database/migrations
folder.
Run php artisan migrate
to create visitlogs
table in your database.
route
: Route where visit log will be available.iptolocation
: By default, only IP, Browser and OS info is logged. However if you set this option totrue
, it will also log Location info through https://ipstack.com/ service. Note: You will need to create account there and get your access key and specify that in visitlog config file.cache
: Ifiptolocation
is set totrue
, this option can be used to cache the results instead of requesting Location info each time from https://ipstack.com/.unique
: Iftrue
, it will only log unique visits based on IP address. Iffalse
, it will log each visit even from same IP.log_user
: Iftrue
, it will also log authenticated user info.user_name_fields
: Iflog_user
istrue
, this option can be used to specify name fields of user from your Users table in database.visitlog_page
: Iftrue
, a default log viewer page can be viewed athttp//yourapp.com/your_route
to see all the logs. Hereyour_route
is the first option above.http_authentication
: Ifvisitlog_page
istrue
, this option can be used to show visit log page to only authenticated app users by asking them email and password via basic http authentication.
To save logs, just call save
method of VisitLog
facade:
VisitLog::save();
Tip: If you want to save only unique logs based on IP, login or post-login page is good place to use the save
method on because generally login page isn't visited again after user is authenticated. If you also want to save authenticated user, calling save
method inside login post method seems to be good idea.
If however, you have set unique
option to false
and want to log all visits, calling save
method in common location is good idea like base controller of your app.
If config option visitlog_page
is set to true
, you can view all visit logs by browsing to http//yourapp.com/your_route
.
Note: If you don't want to allow visitlog
page to be publicly seen, set the option visitlog_page
to false
and now http//yourapp.com/your_route
will result in 404
error.
In this case, you can still show log info in some authenticated area of your app by using all
method of VisitLog
facade: $visitLogs = VisitLog::all();
and it will give you Collection
that you can iterate over and show in your own view file.
This code is published under the MIT License. This means you can do almost anything with it, as long as the copyright notice and the accompanying license file is left intact.