Download the PHP package ryangjchandler/laravel-comments without Composer
On this page you can find all versions of the php package ryangjchandler/laravel-comments. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ryangjchandler/laravel-comments
More information about ryangjchandler/laravel-comments
Files in ryangjchandler/laravel-comments
Package laravel-comments
Short Description A dead-simple comments package for Laravel.
License MIT
Homepage https://github.com/ryangjchandler/laravel-comments
Informations about the package laravel-comments
A dead-simple comments package for Laravel.
This package provides an incredibly simple comment system for your Laravel applications.
If you're looking for a package with UI components, I highly recommend using Spatie's
laravel-comments
package which comes with Livewire support out of the box.
Installation
You can install the package via Composer:
The package automatically registers migrations so there's no need to publish anything, just run them.
You can publish the config file with:
This is the contents of the published config file:
Usage
Start by using the RyanChandler\Comments\Concerns\HasComments
trait on your model.
This trait adds a comments(): MorphMany
relationship on your model. It also adds a new comment()
method that can be used to quickly add a comment to your model.
By default, the package will use the authenticated user's ID as the "commentor". You can customise this by providing a custom User
to the comment()
method.
The package also supports parent -> children
relationships for comments. This means that a comment can belongTo
another comment.
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- Ryan Chandler
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-comments with dependencies
illuminate/contracts Version ^11.0
illuminate/database Version ^11.0
spatie/laravel-package-tools Version ^1.16.3