Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| <?php | |
| namespace SomeApp\Notifications\Payment; | |
| // Example 1 | |
| // Would be nice to be able to configure this notification in EventServiceProvider: | |
| // 'SomeApp\Events\Payment\PayInRefundFailed' => [ | |
| // 'SomeApp\Notifications\Payment\PayInRefundFailed@handle' | |
| // ], | |
| // | |
| // It would be up to the event to carry info / recipient for the notification... |
| <?php | |
| // ... | |
| class EventServiceProvider extends ServiceProvider | |
| { | |
| /** | |
| * The event handler mappings for the application. | |
| * | |
| * @var array | |
| */ |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.