ads/statistics

Tracks basic user information to generate statistical data on page usage. Also provides additional information to debug 500 errors
6,607 3
Install
composer require ads/statistics
Latest Version:3.0.20
PHP:^7.3|^8.0|^8.1|^8.2|^8.3|^8.4|^8.5
License:GPL-3.0-or-later
Last Updated:Apr 28, 2026
Links: GitHub  ·  Packagist
Maintainer: scs-ben

ads-statistics

The module will track the page view history for all users of the associated website. The module will log 500 error statistics to help with debugging code. Additionaly, the posted data for form submission will be saved in the database. The settings file has an array option that allows you to remove sensitive files from being saved in the tracking table.

Once configired, this plugin will automatically save page viewing history to the database.

(Make sure to run "php artisan migrate" if updating)

Step 1:

Set up composer, add the package to your require tag:

composer require ads/statistics

Step 2:

Publish and run migrations:

php artisan vendor:publish --provider=Ads\\Statistics\\StatisticsServiceProvider
php artisan migrate

Step 3:

Add Statistic logging to 'web' middleware in app\Http\Kernel.php:

    protected $middlewareGroups = [
        'web' => [
            ...
            \Ads\Statistics\Statistic::class,
        ],

Step 4:

In order to log 500 errors, you'll need to add some code to the app/Exceptions/Handler.php Add this interceptor to the register function Add to or create the report function before the return:

public function register()
{
	$this->reportable(function (Throwable $e) {
	    //
	});

	$this->reportable(function (\Exception $e) {
	    \Statistic::error($e);
	});
}

* Step 5 is only necessary if you have user authentication

Step 5:

Edit the config/statistics.php file.

Please enter the column names from your user database table.

For example:

  'user_id' => 'email',
  'first_name' => 'first_name',
  'last_name' => 'last_name',
  'protected_fields' => ['password'],

Related Packages

reliese/laravel

Reliese Components for Laravel Framework code generation.

3,954,390 1,705
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,312 160
laravel-ja/laravel

The Laravel Framework.

5,667 17
kavenegar/laravel

laravel 4 and 5 kavenegar integration

366,462 86
laravel/laravel

The skeleton application for the Laravel framework.

64,738,171 84,935