Aller au contenu
← Retour aux projets

Filament Hotjar

Filament Hotjar

#Filament Hotjar

Buy Me A Coffee

Latest Version on Packagist GitHub Code Style Action Status Total Downloads License

Filament plugin for Hotjar with a settings page powered by Spatie Laravel Settings. Manage your Hotjar site ID directly from the Filament admin panel, and the tracking code is injected into every page of your panels.

Built on top of jeffersongoncalves/laravel-hotjar.

#Compatibility

Branch Filament Package version
1.x 3.x ^1.0
2.x 4.x ^2.0
3.x 5.x ^3.0

#Installation

You can install the package via composer:

composer require jeffersongoncalves/filament-hotjar:"^3.0"

Publish the settings migrations and run them:

php artisan vendor:publish --tag=hotjar-settings-migrations
php artisan migrate

#Usage

#Register the Plugin

Add the plugin to your Filament panel provider:

use JeffersonGoncalves\Filament\Hotjar\HotjarPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            HotjarPlugin::make(),
        ]);
}

The plugin will:

  • Register a Settings Page where you can manage the Hotjar site ID and snippet version
  • Automatically inject the Hotjar tracking code into the <head> of your Filament panels (only when a site ID is set)

#Disable the Settings Page

If you only want the automatic script injection without the settings page:

HotjarPlugin::make()
    ->settingsPage(false),

#Requirements

  • PHP 8.2 or higher
  • Filament 5.x

#Changelog

Please see CHANGELOG for more information on what has changed recently.

#Contributing

Please see CONTRIBUTING for details.

#Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

#Credits

#License

The MIT License (MIT). Please see License File for more information.

Nouvelle version disponible.