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']);