PHP code example of rizwan3d / comment-system

1. Go to this page and download the library: Download rizwan3d/comment-system 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/ */

    

rizwan3d / comment-system example snippets


   Rizwan3d\CommentSystem\Providers\CommentSystemServiceProvider::class,
   

   use Rizwan3d\CommentSystem\Traits\Commentable;
   

   $model->addComment($content);
   

   $comments = $model->comments;
   

use App\Post; // Replace with your model class

$post = Post::find(1);

$comment = $post->addComment('This post is great!');

$childComment = $comment->addComment('I agree!');

$allComments = $post->comments; // Includes $comment and $childComment

<ol>
    @foreach ($comments as $comment)
    <li>{{$comment->content}}</li>
    @