PHPackages                             ilbronza/notifications - 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. ilbronza/notifications

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

ilbronza/notifications
======================

:laravel notifications extended

v2.5.1(1mo ago)0234MITPHP

Since Jun 23Pushed 1w ago2 watchersCompare

[ Source](https://github.com/ilBronza/Notifications)[ Packagist](https://packagist.org/packages/ilbronza/notifications)[ Docs](https://github.com/ilbronza/notifications)[ RSS](/packages/ilbronza-notifications/feed)WikiDiscussions main Synced 2d ago

READMEChangelogDependenciesVersions (2)Used By (0)

Notifications
=============

[](#notifications)

Messaggi vocali
---------------

[](#messaggi-vocali)

Il package include una funzionalità per inviare messaggi vocali come notifiche:

1. **Schermata utenti**: `/notifications-manager/voice-messages` - lista di tutti gli utenti
2. **Registrazione**: clic su un utente apre un modal per registrare un messaggio vocale
3. **Invio**: il messaggio viene salvato e inviato come notifica audio al destinatario

### Configurazione

[](#configurazione)

Pubblica la config e personalizza in `config/notifications.php`:

```
'voiceMessages' => [
    'user_model' => \App\Models\User::class,  // Modello User dell'app
    'storage_disk' => 'notifications_audio',  // Disk dedicato, personalizzabile per progetto
    'storage_path' => '',  // Sottocartella nel disk (vuoto = root del disk)
    'disk_config' => [  // Config del disk se non definito in config/filesystems.php
        'driver' => 'local',
        'root' => storage_path('app/public/notifications_audio'),
        'url' => env('APP_URL') . '/storage/notifications_audio',
        'visibility' => 'public',
    ],
],
'layout' => 'layouts.app',  // Layout per la pagina messaggi vocali
```

Per usare S3 o un altro driver, definisci il disk `notifications_audio` in `config/filesystems.php`:

```
'notifications_audio' => [
    'driver' => 's3',
    'key' => env('AWS_ACCESS_KEY_ID'),
    'secret' => env('AWS_SECRET_ACCESS_KEY'),
    'region' => env('AWS_DEFAULT_REGION'),
    'bucket' => env('AWS_BUCKET'),
    'url' => env('AWS_URL'),
],
```

### Speech-to-text (trascrizione)

[](#speech-to-text-trascrizione)

Helper esterno per trascrivere le note vocali. Chiamabile quando serve:

```
use IlBronza\Notifications\Helpers\SpeechToTextHelper;

// Da path assoluto
$testo = SpeechToTextHelper::transcribe('/path/to/audio.webm');

// Da path relativo allo storage
$testo = SpeechToTextHelper::transcribe('file.webm', 'notifications_audio');

// Da URL
$testo = SpeechToTextHelper::transcribe('https://example.com/audio.webm');

// Con lingua specifica (es. italiano)
$testo = SpeechToTextHelper::transcribe('file.webm', 'notifications_audio', 'it');
```

Configura in `.env`:

```
OPENAI_API_KEY=sk-...
NOTIFICATIONS_SPEECH_TO_TEXT_DRIVER=openai_whisper

```

### Requisiti

[](#requisiti)

- Eseguire `php artisan storage:link` per rendere accessibili i file audio (con disk locale)
- Il modello User deve implementare `ExtendedNotifiable` per ricevere le notifiche

---

remember to create the artisan command

migrate add use ExtendedNotifiable; to AccountManager User and Role

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance94

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity33

Early-stage or recently created project

 Bus Factor1

Top contributor holds 84.2% 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

Unknown

Total

1

Last Release

57d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/33c65523e8a1cdfe8ed5f5fb8d90101b28eceb8c2ef7acb50a24cf6c42b8e639?d=identicon)[ilBronza](/maintainers/ilBronza)

---

Top Contributors

[![bronza](https://avatars.githubusercontent.com/u/3426331?v=4)](https://github.com/bronza "bronza (16 commits)")[![ilBronza](https://avatars.githubusercontent.com/u/68387610?v=4)](https://github.com/ilBronza "ilBronza (2 commits)")[![lbortolon](https://avatars.githubusercontent.com/u/109848849?v=4)](https://github.com/lbortolon "lbortolon (1 commits)")

---

Tags

laravelnotifications

### Embed Badge

![Health badge](/badges/ilbronza-notifications/health.svg)

```
[![Health](https://phpackages.com/badges/ilbronza-notifications/health.svg)](https://phpackages.com/packages/ilbronza-notifications)
```

###  Alternatives

[edvinaskrucas/notification

Package for Laravel for helping to manage flash / instant notifications / messages.

520399.4k10](/packages/edvinaskrucas-notification)[devrabiul/laravel-toaster-magic

Laravel Toaster Magic is a lightweight, flexible toast library for Laravel projects, with no jQuery, Bootstrap, or Tailwind dependency.

22678.5k1](/packages/devrabiul-laravel-toaster-magic)[ascsoftw/livewire-toast

Livewire Package to display Toast Notifications

48546.7k1](/packages/ascsoftw-livewire-toast)[coreproc/nova-notification-feed

A Laravel Nova package that adds a notification feed in your Nova app.

9949.5k](/packages/coreproc-nova-notification-feed)[sarfraznawaz2005/laravel-sse

Laravel package to provide Server Sent Events functionality for your app.

484.8k](/packages/sarfraznawaz2005-laravel-sse)[usamamuneerchaudhary/filament-notifier

A powerful notification system for FilamentPHP that handles multi-channel notifications with template management, scheduling, and real-time delivery. Built for developers who need enterprise-grade notifications without the complexity.

342.2k](/packages/usamamuneerchaudhary-filament-notifier)

PHPackages © 2026

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