PHPackages                             c6digital/filament-plausible-page - 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. c6digital/filament-plausible-page

ActiveLibrary

c6digital/filament-plausible-page
=================================

Embed your Plausible dashboard inside of Filament.

v2.2.1(7mo ago)01.1k↓50%[4 PRs](https://github.com/c6digital/filament-plausible-page/pulls)MITPHPPHP ^8.2CI passing

Since Aug 23Pushed 4mo ago1 watchersCompare

[ Source](https://github.com/c6digital/filament-plausible-page)[ Packagist](https://packagist.org/packages/c6digital/filament-plausible-page)[ Docs](https://github.com/c6digital/filament-plausible-page)[ GitHub Sponsors](https://github.com/c6digital)[ RSS](/packages/c6digital-filament-plausible-page/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (8)Dependencies (14)Versions (13)Used By (0)

Embed your Plausible dashboard inside of Filament.
==================================================

[](#embed-your-plausible-dashboard-inside-of-filament)

[![Latest Version on Packagist](https://camo.githubusercontent.com/546a7f7717d186c6c3a0405fe37a729573940deb2604a06e76486fcd0414ce10/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f63366469676974616c2f66696c616d656e742d706c61757369626c652d706167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/c6digital/filament-plausible-page)[![GitHub Tests Action Status](https://camo.githubusercontent.com/1f330eceafa098a139f122d6be4da992027453a0bc9d6e74e16ce18a46d3d40e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f63366469676974616c2f66696c616d656e742d706c61757369626c652d706167652f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/c6digital/filament-plausible-page/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/4080e101139474a3a7da0f263f9058f8edb9453464ab3d0e902e9340e1e61a7d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f63366469676974616c2f66696c616d656e742d706c61757369626c652d706167652f6669782d7068702d636f64652d7374796c696e672e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/c6digital/filament-plausible-page/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/2da5eba3dd8b8b28ab53fe43692692327c9375193e172f0330dccb40616487b8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f63366469676974616c2f66696c616d656e742d706c61757369626c652d706167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/c6digital/filament-plausible-page)

This package allows you to embed your Plausible Analytics dashboard as a page inside of Filament.

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

[](#installation)

You can install the package via Composer:

```
composer require c6digital/filament-plausible-page
```

Usage
-----

[](#usage)

Register the plugin with Filament.

```
use C6Digital\FilamentPlausiblePage\FilamentPlausiblePagePlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugin(FilamentPlausiblePagePlugin::make());
}
```

Provide a "Share URL" generated by Plausible in your `.env` file.

```
PLAUSIBLE_SHARE_URL="https://plausible.io/share/mysite.com?auth=blahblahblah

```

Load your panel and view your analytics!

### Disabling Plausible footer text

[](#disabling-plausible-footer-text)

Use the `hideFooterMark()` method to remove the "Stats powered by Plausible Analytics" footer mark.

```
return $panel
    ->plugin(
        FilamentPlausiblePagePlugin::make()
            ->hideFooterMark()
    );
```

### Hide "Plausible" page title

[](#hide-plausible-page-title)

Use the `hidePageTitle()` method to hide the page title.

```
return $panel
    ->plugin(
        FilamentPlausiblePagePlugin::make()
            ->hidePageTitle()
    );
```

### Conditionally registering navigation items

[](#conditionally-registering-navigation-items)

If you want to conditionally show the navigation items registered by the page, you can provide a callback function to the `shouldRegisterNavigationUsing()` method.

```
FilamentPlausiblePagePlugin::make()
    ->shouldRegisterNavigationUsing(function () {
        return Tenant::hasPlausibleShareUrl();
    });
```

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)

- [Ryan Chandler](https://github.com/c6digital)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance71

Regular maintenance activity

Popularity17

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 60.5% 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 ~109 days

Recently: every ~161 days

Total

8

Last Release

229d ago

Major Versions

v1.1.2 → v2.0.02024-04-30

PHP version history (2 changes)v1.0.0PHP ^8.1

v2.2.1PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/568d485d441c691b0358b9091254a6a671fef8f76b73f28af1180ad568d142b2?d=identicon)[ryangjchandler](/maintainers/ryangjchandler)

---

Top Contributors

[![ryangjchandler](https://avatars.githubusercontent.com/u/41837763?v=4)](https://github.com/ryangjchandler "ryangjchandler (23 commits)")[![c6andy](https://avatars.githubusercontent.com/u/213634680?v=4)](https://github.com/c6andy "c6andy (11 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")

---

Tags

laravelc6digitalfilament-plausible-page

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/c6digital-filament-plausible-page/health.svg)

```
[![Health](https://phpackages.com/badges/c6digital-filament-plausible-page/health.svg)](https://phpackages.com/packages/c6digital-filament-plausible-page)
```

###  Alternatives

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[guava/filament-knowledge-base

A filament plugin that adds a knowledge base and help to your filament panel(s).

206120.5k1](/packages/guava-filament-knowledge-base)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[bezhansalleh/filament-plugin-essentials

A collection of essential traits that streamline Filament plugin development by taking care of the boilerplate, so you can focus on shipping real features faster

27584.7k16](/packages/bezhansalleh-filament-plugin-essentials)[guava/filament-modal-relation-managers

Allows you to embed relation managers inside filament modals.

7565.0k4](/packages/guava-filament-modal-relation-managers)

PHPackages © 2026

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