axitdev/laravelfastcomments

Simple way to add comments to your Laravel Eloquent models

v1.0.0 2019-05-15 03:28 UTC

This package is auto-updated.

Last update: 2024-04-15 15:42:22 UTC


README

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 axitdev@gmail.com instead of using the issue tracker.

Credits

License

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