delia

Available Events

Delia will fire these events:

  • LaraZeus\Delia\Events\BookmarkAdded
  • LaraZeus\Delia\Events\BookmarkRemoved

Register a Listener:

  • First, create your listener:
1php artisan make:listener SendNotification --event=BookmarkAdded
  • Second, register the listener in your EventServiceProvider
1protected $listen = [
2 //...
3 BookmarkAdded::class => [
4 SendNotification::class,
5 ],
6];
  • Finally, you can receive the form object in the handle method and do whatever you want.