PHP code example of pirsch-analytics / laravel-pirsch
1. Go to this page and download the library: Download pirsch-analytics/laravel-pirsch library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pirsch-analytics / laravel-pirsch example snippets
use Pirsch\Http\Middleware\TrackPageview;
Route::middleware(TrackPageview::class.':url/to/exclude/*')->group(function () {
Route::get('/', function () {
return view('welcome');
});
});
use Pirsch\Http\Middleware\TrackPageview;
Route::middleware(TrackPageview::class.':url/to/exclude/*,url/to/exclude2/*')->group(function () {
Route::get('/', function () {
return view('welcome');
});
});
namespace App\Http\Middleware;
use Pirsch\Http\Middleware\TrackPageview as Middleware;
class TrackPageview extends Middleware
{
/**
* The URIs that should be excluded from tracking.
*
* @var array<int,string>
*/
protected array $except = [
'url/to/exclude/*',
];
/**
* The Headers that should be excluded from tracking.
*
* @var array<int,string>
*/
protected array $exceptHeaders = [
'X-ExcludedHeader',
];
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.