VisitLog is a simple Laravel 5 package that can be used to log visitor information and save it into database.
sarfraznawaz2005 / visitlog
⏰ Laravel package to log visitor information into database.
Laravel VisitLog
Introduction
VisitLog is a simple Laravel 5 package that can be used to log visitor information and save it into database.
Features
- 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.
Screenshot
Note: Info in above screenshot is fake.
Requirements
- PHP >= 5.5.9
- Laravel 5
Installation
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
…
Top comments (0)