LaravelPackages.net
Acme Inc.
Toggle sidebar
axitdev/laravelfastcomments

Simple way to add comments to your Laravel Eloquent models

64
0
v1.0.0
About axitdev/laravelfastcomments

axitdev/laravelfastcomments is a Laravel package for simple way to add comments to your laravel eloquent models. It currently has 0 GitHub stars and 64 downloads on Packagist (latest version v1.0.0). Install it with composer require axitdev/laravelfastcomments. Discover more Laravel packages by axitdev or browse all Laravel packages to compare alternatives.

Last updated

Simple way to add comments to your Laravel Eloquent models

Latest Version on Packagist Build Status Quality Score Total Downloads

Installation

You can install the package via composer:

composer require axitdev/laravelfastcomments

Publish the migration:

php artisan vendor:publish --provider="Axitdev\LaravelFastComments\LaravelFastCommentsServiceProvider"

And don't forget to migrate:

php artisan migrate

Usage

Just add HasComments trait to the eloquent model.

...
class Post extends Model
{
    use HasComments;
    ...
}

Creating Comments

To create new comment you can use comment method.

$post = Post::find(1);

$post->comment('Comment text');

By default comment method will create a comment with user_id from auth()->user()->id, but you can create comment as another user.

$user = User::find(1);
$post = Post::find(1);

$post->comment('Comment text', $user);

Retrieving Comments

To get list of comments you can use comments method.

$post = Post::find(1);

$post->comments;

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Star History Chart