PHP code example of kyranb / footprints

1. Go to this page and download the library: Download kyranb/footprints 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/ */

    

kyranb / footprints example snippets


    /**
     * The application's global HTTP middleware stack.
     *
     * These middleware are run during every request to your application.
     *
     * @var array
     */
    protected $middleware = [
        \Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
        \App\Http\Middleware\EncryptCookies::class,
        \Kyranb\Footprints\Middleware\CaptureAttributionDataMiddleware::class, // <-- Added
    ];

namespace App\Models;

use Illuminate\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;
use Kyranb\Footprints\TrackableInterface;
use Kyranb\Footprints\TrackRegistrationAttribution;

class User extends Model implements TrackableInterface // <-- Added
{
    use Authenticatable;
    use TrackRegistrationAttribution; // <-- Added 

    /**
     * The database table used by the model.
     *
     * @var string
     */
    protected $table = 'users';

}

$schedule->command('footprints:prune')->daily();

$schedule->command('footprints:prune --days=10')->daily();

'disable_robots_tracking' => true 
 php
php artisan vendor:publish --provider="Kyranb\Footprints\FootprintsServiceProvider"
 php
'connection_name' => 'mytrackingdbconnection'
 php
'guard' => 'web'
 php
'attribution_duration' => 2628000
 php
'landing_page_blacklist' => ['genealabs/laravel-caffeine/drip', 'admin']
 php
'cookie_domain' => .yourdomain.com
 php
'async' => true
 php
'uniqueness' => false
 php
$user = User::find(1);
$user->visits;
 php
$user = User::find(1);
$user->initialAttributionData();
 php
$user = User::find(1);
$user->finalAttributionData();