takdeniz / laravel-likable-comment
Laravel comment with like/dislike feature
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/takdeniz/laravel-likable-comment
Requires
This package is auto-updated.
Last update: 2025-09-27 04:43:47 UTC
README
Basically add comment with like/dislike feature.
This package use actuallymab/laravel-comment
laravel-comment
package is a very good but doesn't allow like/dislike or upvote/downvote for comment. This repo fix this issues
Install and configure
To install package, run:
$ composer require takdeniz/laravel-likable-comment
If you don't use auto-discovery, or using Laravel version < 5.5 Add service provider to your app.php file
\Takdeniz\LikableComment\LikableCommentServiceProvider::class
Publish configurations and migrations, then migrate comments table.
$ php artisan vendor:publish --provider="Takdeniz\LikableComment\LikableCommentServiceProvider"
$ php artisan migrate