# Events

Commenter triggers the following events for your handlers to listen to:

{% hint style="info" %}
Consult Laravel documentation to learn more about [event and handlers](https://laravel.com/docs/11.x/events).
{% endhint %}

<table data-full-width="true"><thead><tr><th width="64">Event Name</th><th width="689">Properties</th><th>Description</th></tr></thead><tbody><tr><td><pre><code>LakM\Commenter\Events\Comment\CommentCreated
</code></pre></td><td><pre><code>public LakM\Commenter\Models\Comment $model
</code></pre></td><td>After a comment is created successfully.</td></tr><tr><td><pre><code>LakM\Commenter\Events\Comment\CommentDeleted
</code></pre></td><td><pre><code>public LakM\Commenter\Models\Comment $model
</code></pre></td><td>After a comment is deleted.</td></tr><tr><td><pre><code>LakM\Commenter\Events\Comment\CommentUpdated
</code></pre></td><td><pre><code>public LakM\Commenter\Models\Comment $model
</code></pre></td><td>After a comment is updated.</td></tr><tr><td><pre><code>LakM\Comments\Events\Reply\ReplyCreated
</code></pre></td><td><pre><code>public LakM\Commenter\Models\Comment $model,
public LakM\Commenter\Models\Reply $reply
</code></pre></td><td>After a reply is created.</td></tr><tr><td><pre><code>LakM\Commenter\Events\Reply\ReplyDeleted
</code></pre></td><td><pre><code>public LakM\Commenter\Models\Reply $model
</code></pre></td><td>After a reply is deleted.</td></tr><tr><td><pre><code>LakM\Commenter\Events\Reply\ReplyUpdated
</code></pre></td><td><pre><code>public LakM\Commenter\Models\Reply $model
</code></pre></td><td>After a reply is updated.</td></tr></tbody></table>
