Package Data | |
---|---|
Maintainer Username: | Lakshan-Madushanka |
Maintainer Contact: | epmadushanka@gmail.com (Lakshan Madushanka) |
Package Create Date: | 2024-03-29 |
Package Last Update: | 2025-05-13 |
Home Page: | https://lakm.gitbook.io/commenter |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-05-14 15:00:04 |
Package Statistics | |
---|---|
Total Downloads: | 5,760 |
Monthly Downloads: | 1,027 |
Daily Downloads: | 70 |
Total Stars: | 324 |
Total Watchers: | 4 |
Total Forks: | 16 |
Total Open Issues: | 1 |
Documentation | Admin Panel | Overview | Articles | Key Features | Why Commenter | Quick Start | Themes | Demo | Changelog | Testing | Roadmap | Security | License | Sponsor
Everything you need for your commenting system
A Laravel package that brings powerful commenting functionality to your apps 😍
Commenter is a feature-rich, modern package with an admin panel designed to address all your commenting needs. With this package, you won't need any additional tools for the comment functionality in your Laravel projects.
See the documentation for detailed installation and usage instructions.
<x-comments :model="$post" />
The commenting feature is a common requirement for most websites. Allowing users to comment enables interaction and enhances the user experience. While Laravel offers a wealth of packages to meet various project needs, there are limited options when it comes to commenting features.
Due to these issues, most companies tend to opt for commercial packages or plugins. However, spending extra money on commercial packages reduces the company's overall profit. This package is developed to address all these shortcomings.
As a full-stack developer, I have personally encountered these issues. That's why I developed this package—not only for my own projects but also to benefit other developers.
composer require lakm/laravel-comments -W
php artisan commenter:install
Implement CommentableContract
and import Commentable
trait in commentable model.
use LakM\Comments\Concerns\Commentable;
use LakM\Comments\Contracts\CommentableContract;
class Post extends Model implements CommentableContract
{
use Commentable;
}
Implement CommenterContract
and import Commenter
trait in commenter model.
use LakM\Comments\Concerns\Commenter;
use LakM\Comments\Contracts\CommenterContract;
class User extends Model implements CommenterContract
{
use Commenter;
}
Include styles in your layout.
<html>
<head>
@commentsStyles
</head>
</html>
Include scripts in your layout.
<html>
<body>
@commentsScripts
</body>
</html>
Include the comments component with the related model.
<x-comments::index :model="$post" />
[!Warning] You can omit the index part but make sure to include the double colon. Otherwise Laravel will search for the component in project instead of package.
<x-comments:: :model="$post" />
You can change theme to your prefferred one. Consult documentation here for more info.
https://github.com/Lakshan-Madushanka/laravel-comments-demo
https://youtu.be/6CxgmvESsdc
https://youtu.be/dvFIOhSpmv8
[!Note] This mini demo video provides a basic overview of Commenter. The full scope and features of Commenter are much more extensive. A comprehensive video will be published with the stable release.
Please see CHANGELOG for more information what has changed recently.
./vendor/bin/pest
|Feature | Status | Version |
|----------------------------------------------------------|------------------------|-------------------------------------------------------------------------------------|
|Comment/Reply Report | TBI | -
|Guest mode email verification | :white_check_mark: | 2.0.0 |
|Dark Mode Support | :white_check_mark: | 2.0.0 |
Please see here for our security policy.
The MIT License (MIT). Please see License File for more information.
You might think we're biased, but this is genuinely one of the best commenting systems available for paid or free (we doubt there’s a paid solution that’s as tailored to your needs as this one). We're dedicated to continuously improving this package and meeting your requirements. Isn’t it reassuring to have a well-tested, feature-rich commenting system available for free for your Laravel projects?
We truly appreciate any sponsorship you offer. Your contribution is a direct investment in your future as well, with every penny supporting the growth of this project and other open-source initiatives.
If you find value in this project, please consider supporting it by visiting the sponsor page: https://github.com/sponsors/Lakshan-Madushanka. Your support means a lot 💗!
We often find that the majority of packages using Commenter also require a review and rating system. With our TrueReviewer package, you can seamlessly integrate a complete review and rating solution into your project without breaking a sweat.