Download the PHP package baklysystems/laravel-commentable without Composer
On this page you can find all versions of the php package baklysystems/laravel-commentable. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download baklysystems/laravel-commentable
More information about baklysystems/laravel-commentable
Files in baklysystems/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 4 and 5.
For Laravel 4, look at the 1.0 branch.
This package use Nested Sets pattern with Baum.
More information about Nested Sets
Installation
Edit your project's composer.json file to require lanz/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 'Lanz\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