Commenter
GitHubAdmin Panel
v2
v2
  • 😍Commenter
  • Overview
    • 💡Why Commenter
    • 🗞️Articles
    • ✨Key Features
    • 🤖Technologies
  • Basics
    • 🧠Concept
    • ®️Requirements
    • 🔨Installation
    • ✈️Usage
    • 🌈Themes
  • Demo
    • 👩‍🏫Project
    • 📺Basic Demo Video
    • 📼Full Demo Video
  • Configuration
    • 📜Publish Config
    • Migrations/Tables
    • ⚖️Change Mode
    • 🔐Authorization
    • ⏲️Limit comments per user
    • 😍Reactions
    • ⛔Approval
    • 🚧Validations
    • Sorting
    • 🛠️Other Options
  • Advance
    • 🔏Security
    • 🚀Performance
    • ⚡Events
    • 🌍Localization
    • 🛟Customization
    • 🕵️Testing
  • 🛣️Roadmap
  • 💓Sponsor
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Advance

Events

PreviousPerformanceNextLocalization

Last updated 4 months ago

Was this helpful?

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

Consult Laravel documentation to learn more about .

Event Name
Properties
Description

After a comment is created successfully.

After a comment is deleted.

After a comment is updated.

After a reply is created.

After a reply is deleted.

After a reply is updated.

⚡
LakM\Comments\Events\CommentCreated
public LakM\Comments\Models\Comment $model
LakM\Comments\Events\CommentDeleted
public LakM\Comments\Models\Comment $model
LakM\Comments\Events\CommentUpdated
public LakM\Comments\Models\Comment $model
LakM\Comments\Events\CommentReplyCreated
public LakM\Comments\Models\Comment $model,
public LakM\Comments\Models\Reply $reply
LakM\Comments\Events\CommentReplyDeleted
public LakM\Comments\Models\Reply $model
LakM\Comments\Events\CommentReplyUpdated
public LakM\Comments\Models\Reply $model
event and handlers