PHPackages                             jeffersongoncalves/filament-umami - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. jeffersongoncalves/filament-umami

ActiveLibrary[API Development](/categories/api)

jeffersongoncalves/filament-umami
=================================

This Laravel package seamlessly integrates Umami analytics into your Blade templates. Easily track website visits and user engagement directly within your Laravel application, providing valuable insights into your website's performance. This package simplifies the integration process, saving you time and effort. With minimal configuration, you can leverage Umami's powerful analytics features to gain a clearer understanding of your audience and website usage.

3.3.0(1w ago)41.2k↑1306.3%MITPHPPHP ^8.2CI passing

Since Mar 4Pushed 1w ago1 watchersCompare

[ Source](https://github.com/jeffersongoncalves/filament-umami)[ Packagist](https://packagist.org/packages/jeffersongoncalves/filament-umami)[ Docs](https://github.com/jeffersongoncalves/filament-umami)[ GitHub Sponsors](https://github.com/jeffersongoncalves)[ RSS](/packages/jeffersongoncalves-filament-umami/feed)WikiDiscussions 3.x Synced today

READMEChangelog (10)Dependencies (16)Versions (24)Used By (0)

[![Filament Umami](https://raw.githubusercontent.com/jeffersongoncalves/filament-umami/3.x/art/jeffersongoncalves-filament-umami.png)](https://raw.githubusercontent.com/jeffersongoncalves/filament-umami/3.x/art/jeffersongoncalves-filament-umami.png)

Filament Umami
==============

[](#filament-umami)

[![Latest Version on Packagist](https://camo.githubusercontent.com/6f02da03a54d5b2490a073e7c40fc24e0b73d5150a89d5b7e53510a6c6b90b0c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d756d616d692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffersongoncalves/filament-umami)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/374f592a4f170153892e5e7e81cebb3dcaa4418fee8e66aeb2fc35fb060d4d6a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d756d616d692f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d332e78266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/jeffersongoncalves/filament-umami/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3A3.x)[![Total Downloads](https://camo.githubusercontent.com/52a11f839485aadf506f4ffcda880b82ccc975844a74679778cc0d6f4513c029/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d756d616d692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffersongoncalves/filament-umami)[![License](https://camo.githubusercontent.com/f5c304edc65e85d160d07c97744012069499d75f265248df00028dced573eab2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d756d616d692e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)

This Filament package seamlessly integrates Umami analytics into your Blade templates. Easily track website visits and user engagement directly within your Laravel application, providing valuable insights into your website's performance. This package simplifies the integration process, saving you time and effort. With minimal configuration, you can leverage Umami's powerful analytics features to gain a clearer understanding of your audience and website usage.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require jeffersongoncalves/filament-umami
```

This package depends on [jeffersongoncalves/laravel-umami](https://github.com/jeffersongoncalves/laravel-umami) which provides the core Umami analytics integration for Laravel applications.

Requirements
------------

[](#requirements)

- PHP 8.2 or higher
- Laravel 11.0 or higher
- Filament 5.0

Usage
-----

[](#usage)

### 1. Register the Plugin

[](#1-register-the-plugin)

Add the plugin to your `PanelProvider`:

```
use JeffersonGoncalves\Filament\Umami\UmamiPlugin;

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

This will automatically:

- Inject the Umami tracking script into your panel
- Add a **Settings Page** to manage your Umami configuration

### 2. Run Settings Migration

[](#2-run-settings-migration)

If you haven't already, publish the `spatie/laravel-settings` migration to create the `settings` table:

```
php artisan vendor:publish --provider="Spatie\LaravelSettings\LaravelSettingsServiceProvider" --tag="migrations"
```

Then publish and run the Umami settings migration:

```
php artisan vendor:publish --tag=umami-settings-migrations
php artisan migrate
```

### 3. Manage Settings

[](#3-manage-settings)

Navigate to **Settings &gt; Umami Analytics** in your Filament panel to configure:

- **Tracking Configuration** - Website ID, Analytics Host, Host URL
- **Tracking Behavior** - Auto Track, Exclude Search Parameters, Exclude Hash
- **Advanced Options** - Domains filter, Custom Tag

### Disabling the Settings Page

[](#disabling-the-settings-page)

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

```
UmamiPlugin::make()
    ->settingsPage(false),
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Jèfferson Gonçalves](https://github.com/jeffersongoncalves)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

51

—

FairBetter than 95% of packages

Maintenance98

Actively maintained with recent releases

Popularity24

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 78% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~22 days

Recently: every ~0 days

Total

23

Last Release

11d ago

Major Versions

v2.1.1 → v3.1.12026-02-22

v1.2.0 → v2.2.02026-02-22

v2.2.0 → v3.2.02026-02-22

v2.2.1 → v3.2.12026-03-04

1.3.0 → 3.x-dev2026-06-23

PHP version history (2 changes)v1.0.0PHP ^8.2|^8.3

v3.0.0PHP ^8.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/411493?v=4)[Jefferson Gonçalves](/maintainers/jeffersongoncalves)[@jeffersongoncalves](https://github.com/jeffersongoncalves)

---

Top Contributors

[![jeffersongoncalves](https://avatars.githubusercontent.com/u/411493?v=4)](https://github.com/jeffersongoncalves "jeffersongoncalves (46 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (10 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (2 commits)")[![renovate[bot]](https://avatars.githubusercontent.com/in/2740?v=4)](https://github.com/renovate[bot] "renovate[bot] (1 commits)")

---

Tags

analyticsfilamentfilament-pluginfilament-umamilaravellaravel-packagephpsettings-pagespatie-laravel-settingsumamiumami-analyticslaraveljeffersongoncalvesfilament-umami

###  Code Quality

Static AnalysisPHPStan

### Embed Badge

![Health badge](/badges/jeffersongoncalves-filament-umami/health.svg)

```
[![Health](https://phpackages.com/badges/jeffersongoncalves-filament-umami/health.svg)](https://phpackages.com/packages/jeffersongoncalves-filament-umami)
```

###  Alternatives

[finity-labs/fin-mail

A powerful email template manager and composer for Filament with dynamic token replacement, template versioning, and inline email sending.

284.5k1](/packages/finity-labs-fin-mail)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[stephenjude/filament-debugger

About

104162.2k2](/packages/stephenjude-filament-debugger)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

84215.9k9](/packages/stephenjude-filament-two-factor-authentication)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
