PHP code example of qodenl / laravel-posthog

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

    

qodenl / laravel-posthog example snippets


use QodeNL\LaravelPosthog\Facades\Posthog;

Posthog::capture('event name', ['property' => 'value']);

public $posthogAttributes = [
    'first_name',
    'last_name',
];

use QodeNL\LaravelPosthog\Facades\Posthog;

Posthog::identify('[email protected]', ['first_name' => 'John', 'last_name' => 'Doe']);

Posthog::alias('Session ID here');

    'stores' => [
        'posthog' => [
            'driver' => 'posthog',
        ],
    ],

Laravel\Pennant\Feature::active('myFeatureFlagKey'); // true

use QodeNL\LaravelPosthog\Facades\Posthog;

Posthog::getAllFlags();

use QodeNL\LaravelPosthog\Facades\Posthog;

Posthog::isFeatureEnabled('myFeatureFlagKey');

use QodeNL\LaravelPosthog\Facades\Posthog;

Posthog::getFeatureFlag('myFeatureFlagKey');
bash
php artisan vendor:publish --provider="QodeNL\LaravelPosthog\PosthogServiceProvider"  
text
PENNANT_STORE=posthog