Laravel Page Statistics Docs
1

Installation

You can install the package via composer:

composer require infinityxtech/laravel-page-statistics
  

You can publish and run the migrations with:

php artisan vendor:publish --tag="page-statistics-migrations"
php artisan migrate
  

You can publish the config file with:

php artisan vendor:publish --tag="page-statistics-config"
  

This is the contents of the published config file:

return [
    'geoip_db_path' => null
];