PHP code example of muan / laravel-comments

1. Go to this page and download the library: Download muan/laravel-comments library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

muan / laravel-comments example snippets


'providers' => [
    // ...
    Muan\Comments\Providers\CommentsServiceProvider::class,
    // ...
],

// Use trait
use Muan\Comments\Traits\CanComment;
 
class User extends Authenticatable
{
    use CanComment;
    
    // ...
}

use Muan\Comments\Traits\Commentable;

$user = App\User::find(1);
$product = App\Product::find(1);

// Add comment
$comment = $user->addComment($product, 'Lorem ipsum...');

// or
$comment = $product->addComment($user, 'Lorem ipsum...');

// Approve comment
$comment->approve();

// get comments
$comments = $user->comments;

// get comments
$comments = $product->comments;