PHPackages                             moataz-01/filament-notification-sound - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. moataz-01/filament-notification-sound

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

moataz-01/filament-notification-sound
=====================================

Add sound notifications to Filament database notifications

v1.0.3(3mo ago)95.0k↓16.2%4[4 PRs](https://github.com/moataz-01/filament-notification-sound/pulls)MITJavaScriptPHP ^8.2CI passing

Since Nov 30Pushed 3mo agoCompare

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

READMEChangelog (4)Dependencies (15)Versions (9)Used By (0)

Filament Notification Sound
===========================

[](#filament-notification-sound)

[![Filament Notification Sound Banner](art/banner.png)](art/banner.png)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ce6674fea56100d82320ea40334a0d8a9b802d839453669ac89f4c54eb4117fa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d6f6174617a2d30312f66696c616d656e742d6e6f74696669636174696f6e2d736f756e642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/moataz-01/filament-notification-sound#v1.0.0)[![GitHub Tests Action Status](https://camo.githubusercontent.com/cb32ac5294216bd5ce5f26e23a4f275fbc590da80efb62f11ba70a1c8bfaee88/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d6f6174617a2d30312f66696c616d656e742d6e6f74696669636174696f6e2d736f756e642f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/moataz-01/filament-notification-sound/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/d33574d0d412c93cc0a55d0139113bdb64139e0a19d111a9c794cfd41bc01ce3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d6f6174617a2d30312f66696c616d656e742d6e6f74696669636174696f6e2d736f756e642f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/moataz-01/filament-notification-sound/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/9c2ca3e7b82209c78ecec316729a19ce3f66d0741253cfe6134e80f17b847c53/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d6f6174617a2d30312f66696c616d656e742d6e6f74696669636174696f6e2d736f756e642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/moataz-01/filament-notification-sound)

Add sound notifications to your Filament database notifications. This package plays a sound when a new database notification is received in the Filament admin panel, with optional visual animation effects.

Features
--------

[](#features)

- 🔊 **Sound Notifications** - Play audio when new database notifications arrive
- 🎨 **Visual Animation** - Optional pulse animation on notification badge
- 🎛️ **Volume Control** - Adjustable volume levels (0.0 to 1.0)
- 🎵 **Custom Sounds** - Use your own notification sound files
- ⚙️ **Easy Configuration** - Fluent API for simple customization
- 🔇 **Enable/Disable** - Toggle the plugin on/off as needed
- 🌐 **Browser Compatibility** - Handles browser autoplay restrictions automatically
- 🎯 **Filament 4 OR 5 Ready** - Built for the latest Filament version

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

[](#requirements)

- PHP 8.2 or higher
- Laravel 12.x
- Filament 4.x || 5.x

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

[](#installation)

You can install the package via composer:

```
composer require moataz-01/filament-notification-sound
```

You can publish the config file with:

```
php artisan vendor:publish --tag="filament-notification-sound-config"
```

You can publish the sound files with:

```
php artisan vendor:publish --tag="filament-notification-sound-sounds"
```

Usage
-----

[](#usage)

Register the plugin in your Filament Panel Provider:

```
use Moataz01\FilamentNotificationSound\FilamentNotificationSoundPlugin;

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

Configuration
-------------

[](#configuration)

You can configure the plugin using the fluent methods:

```
use Moataz01\FilamentNotificationSound\FilamentNotificationSoundPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        // ...
        ->plugins([
            FilamentNotificationSoundPlugin::make()
                ->soundPath('/sounds/custom-notification.mp3') // Custom sound path
                ->volume(0.5) // Volume (0.0 to 1.0)
                ->showAnimation(true) // Show animation on notification badge
                ->enabled(true), // Enable/disable the plugin
        ]);
}
```

Customization
-------------

[](#customization)

### Custom Sound

[](#custom-sound)

To use a custom sound, place your audio file in the `public` directory (e.g., `public/sounds/my-sound.mp3`) and configure the plugin to use it:

```
FilamentNotificationSoundPlugin::make()
    ->soundPath('/sounds/my-sound.mp3')
```

Publishing Assets
-----------------

[](#publishing-assets)

If you need to customize the assets, you can publish them:

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)

- [Moataz](https://github.com/moataz-01)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

48

—

FairBetter than 95% of packages

Maintenance82

Actively maintained with recent releases

Popularity32

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 92.3% 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 ~24 days

Total

4

Last Release

96d ago

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

v1.0.3PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/337477ae04dae0b8fe10f723a17925de7f675692e0c056e64d8524240656c324?d=identicon)[moataz01](/maintainers/moataz01)

---

Top Contributors

[![moataz-01](https://avatars.githubusercontent.com/u/100870452?v=4)](https://github.com/moataz-01 "moataz-01 (12 commits)")[![souzajluiz](https://avatars.githubusercontent.com/u/102811214?v=4)](https://github.com/souzajluiz "souzajluiz (1 commits)")

---

Tags

audiodatabase-notificationsfilamentfilament-pluginlaravelnotificationslaravelmoataz-01filament-notification-sound

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/moataz-01-filament-notification-sound/health.svg)

```
[![Health](https://phpackages.com/badges/moataz-01-filament-notification-sound/health.svg)](https://phpackages.com/packages/moataz-01-filament-notification-sound)
```

###  Alternatives

[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)[wnx/laravel-sends

Keep track of outgoing emails in your Laravel application.

200427.3k](/packages/wnx-laravel-sends)[spatie/laravel-discord-alerts

Send a message to Discord

151408.0k](/packages/spatie-laravel-discord-alerts)[rickdbcn/filament-email

Log all outbound emails you send through your Filament application

126246.1k1](/packages/rickdbcn-filament-email)[spatie/laravel-mailcoach-sdk

An SDK to easily work with the Mailcoach API in Laravel apps

41290.2k1](/packages/spatie-laravel-mailcoach-sdk)[creagia/laravel-web-mailer

Laravel Web Mailer

6923.5k](/packages/creagia-laravel-web-mailer)

PHPackages © 2026

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