Download the PHP package ican-agency/laravel-commentable without Composer
On this page you can find all versions of the php package ican-agency/laravel-commentable. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ican-agency/laravel-commentable
More information about ican-agency/laravel-commentable
Files in ican-agency/laravel-commentable
Package laravel-commentable
Short Description Allows for threaded comments to be added to multiple and different models.
License MIT
Informations about the package laravel-commentable
Laravel Commentable
Allows for threaded comments to be added to multiple and different models within your app for Laravel 5.
Based on now defunct Lanz/Laravel Commentable.
This package use Nested Sets pattern with Baum.
More information about Nested Sets
Installation
Edit your project's composer.json file to require ican-agency/laravel-commentable
.
`
Next, update Composer from the terminal. `
As with most Laravel packages you'll need to register Commentable service provider. In your config/app.php
add 'Ican\Commentable\CommentableServiceProvider'
to the end of the $providers
array.
``
Getting started
After the package is correctly installed, you need to generate migration. `
It will generate the <timestamp>_create_comments_table.php
migration. You may now run it with the artisan migrate command:
`
After the migration, one new table will be present, comments
.
Usage
You need to set on your model that it acts as commentable. ``
Now, your model has access to comments
method.
``
For all information about threaded comment, look at the documentation on Baum.
All versions of laravel-commentable with dependencies
illuminate/support Version ~5.0
illuminate/database Version ~5.0
baum/baum Version ~1.1