laravel-comments
laravel-comments copied to clipboard
Reply to comments
Is it possible to reply to comments?
Is it possible to reply to comments?
Yes, just use use HasComments; trait on your Comment model like you do with regular commentable entities
HasComments already comes by default added to the Comment model of the package
for example...
if you will add comment to post, uses
Post::first()->comentAsUser(...)
if you wish add reply to comment, uses
Comment::first()->commentAsUser(...)