asseco-voice / laravel-comments
Laravel comment system
Installs: 5 247
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 0
Open Issues: 4
Requires
- php: ^8.1
- asseco-voice/laravel-common: ^3.0
- laravel/framework: ^10.0
Requires (Dev)
- fakerphp/faker: ^1.9.1
- mockery/mockery: ^1.4.4
- orchestra/testbench: ^8.5
- phpunit/phpunit: ^10.0
- dev-master
- v2.1.0
- v2.0.0
- v1.1.0
- v1.0.0
- v0.4.0
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.0
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- dev-dependabot/composer/nesbot/carbon-2.72.6
- dev-dependabot/composer/symfony/var-dumper-6.4.15
- dev-dependabot/composer/symfony/http-foundation-6.4.14
- dev-dependabot/composer/symfony/process-6.4.14
This package is auto-updated.
Last update: 2025-03-09 16:13:17 UTC
README
Comments
Purpose of this repository is to enable adding comments to any Laravel model.
Installation
Require the package with composer require asseco-voice/laravel-comments
.
Service provider will be registered automatically.
Setup
In order to use the package, migrate the tables with artisan migrate
and add Commentable
trait to model you'd like to have comment support on.
use Asseco\Comment\Contracts\Commentable; class Product extends Model implements Commentable { use Commentable; // ... }
Standard CRUD endpoints are exposed for comment administration, however if you'd like a dedicated controller to manage CRUD actions on a specific model you need to manually create it.
Extending the package
Publishing the configuration will enable you to change package models as well as controlling how migrations behave. If extending the model, make sure you're extending the original model in your implementation.