| Install | |
|---|---|
composer require modularavel/commentable |
|
| Latest Version: | 1.0.1 |
| PHP: | >=8.1 |
A Laravel Blade Livewire package for threaded comments with nested replies.




composer require modularavel/commentable
php artisan vendor:publish --tag=commentable-migrations
php artisan vendor:publish --tag=commentable-config
php artisan vendor:publish --tag=commentable-assets
php artisan vendor:publish --tag=commentable-lang
php artisan vendor:publish --tag=commentable-views
php artisan migrate
<livewire:comment-thread :commentable="$post" />
use Modularavel\Commentable\Traits\HasModularavelCommentable;
class Post extends Model
{
use HasModularavelCommentable;
}
Edit config/modularavel/commentable.php to customize:
MIT
composer test