Looking to hire Laravel developers? Try LaraJobs

laravelfastcomments maintained by axitdev

Description
Simple way to add comments to your Laravel Eloquent models
Last update
2019/05/15 05:28 (dev-master)
License
Downloads
64

Comments
comments powered by Disqus

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

Credits

License

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