With this Nova tool:
- You can overview all sent and failed notifications.
- You can send out announcements.
- All sent or failed notifications will be stored in the database.
In order to use this package, you need to have an installation of Laravel with Laravel nova setup.
First install the Nova package via composer:
$ composer require setemares/nova-notifications
Next up, you must register the tool via the tools
method of the NovaServiceProvider
.
// inside app/Providers/NovaServiceProvder.php
// ...
public function tools()
{
return [
// ...
new \SeteMares\NovaNotifications\NovaNotifications()
];
}
You also need to run php artisan migrate
on your Laravel application so that the new notifications table will be created.
After installing the tool, you should see the new sidebar navigation item for Notifications
.
On the Overview
page you can see all of the sent and failed notifications.
On the Send
page you can see all of your created notification classes.
If you don't see a newly created notification class, try running composer dump-autoload
.
Since you notifications often depend on parameters, this package tries to help you with that. All found constructor parameters will be shown when you try to send a notification. If one of the dependencies is an Eloquent Model, you will get a list with all of the items to choose from.
The MIT License (MIT).