yarmat/laravel-comment

This package is abandoned and no longer maintained. The author suggests using the yarmat/laravel-comment package instead.

Package for using comments with Vue in Laravel 5

1.1 2019-01-23 18:56 UTC

This package is auto-updated.

Last update: 2023-11-16 16:53:35 UTC


README

Package for using comments with Vue.js component

Installing

composer require yarmat/laravel-comment

You must publish Vue Component, Languages, migration and config;

php artisan vendor:publish --provider="Yarmat\Comment\CommentServiceProvider"

After publishing you can create comments-tables by running the migrations:

php artisan migrate

Add middleware

    protected $routeMiddleware = [
        ...
        'comment' => 'Yarmat\Comment\Http\Middleware\CommentMiddleware'
    ];

Settings

You should edit config file

config/comment.php
Limit

Limit of comments when will you send a request for the route get (route('comment.get'))

'limit' => '5',
Order
'default_order' => 'DESC', // OR ASC. DESC - Newest, ASC - Oldest
Models

Change the User Model

'models' => [
     'user' => 'Your User Model Path'
 ]        
Prefix

Change prefix, if you need to change route prefix

{prefix}.store
{prefix}.destroy
{prefix}.update
{prefix}.count
{prefix}.get
Middleware

You can assign a middleware to each route:

    'middleware' => [
    
       'store' => ['throttle:15'],

        'destroy' => ['auth'],

        'get' => [],

        'update' => [],

        'count' => []
    ],
Models that will implement comments
    'models_with_comments' => [
        'Blog' => App\Models\Blog::class,
    ],
Relations

Add relations for you comments

'comment_relations' => ['user'],

or

'comment_relations' => ['user' => function($query) {
    $query->select(['id', 'name', 'email']);
}, 'likes' => function($query){
    $query-> ...
}],
Validation
        'auth' => [ // For Auth Users
            'message' => ['required', 'string', new \Yarmat\Comment\Rules\Spam(), new \Yarmat\Comment\Rules\AllowableSite()]
        ],
        'not_auth' => [ // For Not Auth Users
            'name' => 'required|alpha',
            'email' => 'required|email',
            'message' => ['required', 'string', new \Yarmat\Comment\Rules\Spam(), new \Yarmat\Comment\Rules\AllowableSite()]
        ],
        'messages' => []
TransformComment

Function that transform Comments Model before you get it in the Vue component

    'transformFunction' => function ($item) {
        return [
            'id' => $item->id,
            'message' => $item->message,
            'isVisibleForm' => false,
            'date' => \Date::parse($item->created_at)->diffForHumans(),
            'user' => [
                'name' => $item->user->name ?? $item->name,
                'email' => $item->user->email ?? $item->email
            ],
            'children' => []
        ];
    },
Allowable Tags

Php function strip_tags() that cuts out all tags except those that you list in the string

'allowable_tags' => '',
Spam Words

You can list spam words. Comments with these words will not be published.

'spam_list' => ['spam'],
Spam Sites

You can list allowable sites. The comment will not be published if there is an unresolved link in it.

'allowable_sites' => ['site.com'],

Usage

F.e. you have model Post and you want to attach comments to it

Step 1

Add model to config

    'models_with_comments' => [
         'Post' => App\Post::class,
    ],
Step 2

Add Yarmat\Comment\Traits\HasCommentTrait and Yarmat\Comment\Contracts\CommentContract to your model Post:

<?php 

use Illuminate\Database\Eloquent\Model;
use Yarmat\Comment\Contracts\CommentContract;
use Yarmat\Comment\Traits\HasCommentTrait;

class Post extends Model implements CommentContract
{
    use HasCommentTrait;
}    
Step 3

Add Yarmat\Comment\Traits\CommenterTrait to your User model

<?php 

use Illuminate\Foundation\Auth\User as Authenticatable;
use Yarmat\Comment\Traits\CommenterTrait;

class User extends Authenticatable
{
    use CommenterTrait;
}    
Step 4

Include comment component to your Vue App

Vue.component('comment-component', require('./components/comment/CommentComponent').default);
Step 5

Include to your View

<comment-component></comment-component>
Step 6

Include config to your View

 {!! \Comment::config('Post', $post->id) !!}
Finish

That is all! The you can customise vue component to your template. Component is here:

resources/js/components/comment

License

The Laravel-comment is open-sourced software licensed under the MIT license.