Looking to hire Laravel developers? Try LaraJobs

laravel-visits maintained by quantumh

Description
Track visits on a Laravel application
Authors
Carlos R - David V
Last update
2026/04/07 10:52 (dev-master)
License
Downloads
89 455

Comments
comments powered by Disqus

Register all visits on your Laravel app

Installation

You can install the package via composer:

composer require quantumh/laravel-visits

The package will automatically register itself.

You can publish and run the migrations with:

php artisan vendor:publish --tag="quantum-visits-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag="quantum-visits-config"
php artisan vendor:publish --tag="quantum-location-config"

If you are using MaxMind services: Add to .env file the license key for MaxMind:

MAXMIND_LICENSE_KEY={your_license_key}
MAXMIND_USER_ID={your_user_id}
MAXMIND_WEB_SERVICE_ENABLED=true/false

Add to your Console/Kernel.php the following command to have the MaxMind offline database updated:

$schedule->command('location:update')->weekly();

Add this key on your phpunit.xml to avoid make the test failing due to the visits.

 <env name="TRACKER_VISITS_ENABLED" value="false"/>

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

  • [Carlos Rodriguez]
  • [David Vazquez]

License

The MIT License (MIT). Please see License File for more information.