Laravel Packages

Simple Comments Package for Laravel

Published
Simple Comments Package for Laravel image

The Laravel Comments package by Ryan Chandler is a dead-simple package for adding comments to models in Laravel. Using the HasComments trait on your models, you can quickly add comments attributed to users:

use RyanChandler\Comments\Concerns\HasComments;
 
class Post extends Model
{
use HasComments;
}

Given a post model, you can add a comment using the following method:

$post = Post::first();
 
$post->comment('Hello, world!');

The above example is automatically attributed to the logged-in user. You can also assign a comment to a specific user:

$post->comment('Hello, world!', user: $user);

This package also supports comment parent threads, meaning a comment can belong to another comment.

You can learn about this package, get full installation instructions, and view the source code on GitHub.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
Lerd: A Free, Open Source Herd Alternative for Linux and macOS image

Lerd: A Free, Open Source Herd Alternative for Linux and macOS

Read article
Let's Encrypt HTTPS on an IP Address With FrankenPHP image

Let's Encrypt HTTPS on an IP Address With FrankenPHP

Read article
Laravel Chores: Resumable Data Operations and Cleanups image

Laravel Chores: Resumable Data Operations and Cleanups

Read article
NativePHP v4: Build Native iOS and Android UI in Blade image

NativePHP v4: Build Native iOS and Android UI in Blade

Read article
Laravel Lock: Distributed Locks for Models and Routes image

Laravel Lock: Distributed Locks for Models and Routes

Read article
Laravel Image Responses: Serve Resized Images From Routes image

Laravel Image Responses: Serve Resized Images From Routes

Read article