Package Data | |
---|---|
Maintainer Username: | thyagobrejao |
Maintainer Contact: | thyago.brejao@gmail.com (Thyago Assunção) |
Package Create Date: | 2016-09-02 |
Package Last Update: | 2016-09-06 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-11 15:01:31 |
Package Statistics | |
---|---|
Total Downloads: | 8,039 |
Monthly Downloads: | 29 |
Daily Downloads: | 1 |
Total Stars: | 14 |
Total Watchers: | 2 |
Total Forks: | 4 |
Total Open Issues: | 0 |
Laravel Commentable adds polymorphic threaded comments to Laravel 5.1 and above. (based on dead slynova/laravel-commentable)
This package use Nested Set pattern with Baum. More information about Nested Set
Require the package with Composer.
$ composer require thyagobrejao/laravel-commentable
Add the package to your application service providers in config/app.php
.
'providers' => [
Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
Illuminate\Auth\AuthServiceProvider::class,
...
ThyagoBrejao\Commentable\ServiceProvider::class,
],
Publish the package's migrations to your application and migrate.
$ php artisan vendor:publish --provider="ThyagoBrejao\Commentable\ServiceProvider" --tag="migrations"
$ php artisan migrate
TODO
Nothing has been changed from the first release.
Support follows PSR-2 PHP coding standards, and semantic versioning.
Please report any issue you find in the issues page. Pull requests are welcome.