PHPackages                             eightynine/filament-page-alerts - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. eightynine/filament-page-alerts

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

eightynine/filament-page-alerts
===============================

Display more intrusive alerts in any filament page

v3.0.0(1y ago)73.5k↓75.9%2MITPHPPHP ^8.1

Since Jul 21Pushed 1y ago1 watchersCompare

[ Source](https://github.com/eighty9nine/filament-page-alerts)[ Packagist](https://packagist.org/packages/eightynine/filament-page-alerts)[ Docs](https://github.com/eightynine/filament-page-alerts)[ GitHub Sponsors](https://github.com/eightynine)[ RSS](/packages/eightynine-filament-page-alerts/feed)WikiDiscussions 3.x Synced 2d ago

READMEChangelog (1)Dependencies (7)Versions (2)Used By (0)

Filament Page Alerts
====================

[](#filament-page-alerts)

Display more aggressive alerts in any filament page
---------------------------------------------------

[](#display-more-aggressive-alerts-in-any-filament-page)

[![Latest Version on Packagist](https://camo.githubusercontent.com/969fc244659622a151e2b52494b915709722e99d70319b2320f89ec2794a66d7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6569676874796e696e652f66696c616d656e742d706167652d616c657274732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/eightynine/filament-page-alerts)[![Total Downloads](https://camo.githubusercontent.com/8c08df4f482f014907aceb35cc8de6ab57dfad50d145667f2a6c1ce4c02cfe14/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6569676874796e696e652f66696c616d656e742d706167652d616c657274732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/eightynine/filament-page-alerts)

🛠️ Be Part of the Journey
-------------------------

[](#️-be-part-of-the-journey)

Hi, I'm Eighty Nine. I created page alerts plugin to solve real problems I faced as a developer. Your sponsorship will allow me to dedicate more time to enhancing these tools and helping more people. [Become a sponsor](https://github.com/sponsors/eighty9nine) and join me in making a positive impact on the developer community.

Introduction
------------

[](#introduction)

This package shows alerts in any page, not just the dashboard, currently the alerts appear on top of the page.

[![Package screenshot](https://raw.githubusercontent.com/eighty9nine/filament-page-alerts/3.x/resources/img/page-alerts.png)](https://raw.githubusercontent.com/eighty9nine/filament-page-alerts/3.x/resources/img/page-alerts.png)

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

[](#installation)

You can install the package via composer:

```
composer require eightynine/filament-page-alerts
```

You can publish the config file with:

```
php artisan vendor:publish --tag="filament-page-alerts-config"
```

This is the contents of the published config file:

```
use Filament\View\PanelsRenderHook;

return [

    /**
     * Render hook
     *
     * The render hook to use for the alerts
     */
    "render-hook" => PanelsRenderHook::PAGE_START
];
```

Usage
-----

[](#usage)

Add the plugin to your panel service provider

```
    public function panel(Panel $panel): Panel
    {
        return $panel
            //...
            //...
            ->plugin(FilamentPageAlertsPlugin::make())
            ->spa();
    }
```

You can use the `PageAlert` class to send alerts to your page!

```
    return [
            Actions\CreateAction::make(),
            Actions\Action::make('show notification')
                ->action(function () {
                    PageAlert::make()
                        ->title('Saved successfully')
                        ->body('Yey.. Your changes have been saved: ' . now())
                        ->success()
                        ->send();
                    PageAlert::make()
                        ->title('Saved failure')
                        ->body('Ooops, Your changes have not been saved! ')
                        ->danger()
                        ->send();
                    PageAlert::make()
                        ->title('This requires your attention')
                        ->body('Hey there, this is important')
                        ->warning()
                        ->url('https://www.google.com', 'Google')
                        ->send();
                    PageAlert::make()
                        ->title('You need to check this out')
                        ->body('This looks like something worth your attention')
                        ->info()
                        ->send();
                }),
        ];
```

Credits
-------

[](#credits)

- [Eighty Nine](https://github.com/eightynine)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance32

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~38 days

Total

2

Last Release

675d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/97078bfe6be687082f9d2e8cf2ba73dfaff4efb25cd4c7572c1ebd9c7e9fcbae?d=identicon)[eighty9nine](/maintainers/eighty9nine)

---

Top Contributors

[![eighty9nine](https://avatars.githubusercontent.com/u/137639046?v=4)](https://github.com/eighty9nine "eighty9nine (5 commits)")[![mwakalingajohn](https://avatars.githubusercontent.com/u/14811728?v=4)](https://github.com/mwakalingajohn "mwakalingajohn (5 commits)")[![thursdaydan](https://avatars.githubusercontent.com/u/8914312?v=4)](https://github.com/thursdaydan "thursdaydan (1 commits)")

---

Tags

laraveleightyninefilament-page-alerts

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/eightynine-filament-page-alerts/health.svg)

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

###  Alternatives

[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

94135.4k5](/packages/marcelweidum-filament-expiration-notice)[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)

PHPackages © 2026

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