On this page
Available Events
Replies will fire these events:
LaraZeus\Replies\Events\CommentAdded
LaraZeus\Replies\Events\CommentDeleted
Register a Listener:
- First, create your listener:
1php artisan make:listener SendNotification --event=CommentAdded
- Second, register the listener in your
EventServiceProvider
1protected $listen = [2 //...3 CommentAdded::class => [4 SendNotification::class,5 ],6];
- Finally, you can receive the form object in the
handle
method and do whatever you want.