You can limit the number of comment per user.
// comments.php limit = 10; // now a user can make only 10 comments for a model.
use LakM\Comments\Concerns\Commentable; class Post extends Model { use Commentable; $commentLimit = 10; }
Last updated 1 month ago