slynova/laravel-commentable

This package is abandoned and no longer maintained. No replacement package was suggested.

Polymorphic threaded comments for Laravel

Maintainers

👁 RomainLanz

Package info

github.com/Slynova-Org/laravel-commentable

Issues

pkg:composer/slynova/laravel-commentable

Statistics

Installs: 1 740

Dependents: 1

Suggesters: 0

Stars: 49

v2.0.0 2016-01-13 08:43 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 5ced0a9ffd39dd8766152433a1a5639b0c2c591d

commentlaravelnested setthreadedcommentable

This package is not auto-updated.

Last update: 2018-09-07 12:49:50 UTC


README

👁 Slynova

👁 License
👁 Total Downloads

👁 SensioLabsInsight

Laravel Commentable adds polymorphic threaded comments to Laravel 5.1 and above.

This package use Nested Set pattern with Baum.
More information about Nested Set

Table of Contents

Requirements

  • As Laravel 5.1 require PHP 5.5.9+, we required the same version.

Getting Started

  1. Require the package with Composer.

    $ composer require slynova/laravel-commentable
  2. Add the package to your application service providers in config/app.php.

    'providers' => [
    
     Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
     Illuminate\Auth\AuthServiceProvider::class,
     ...
     Slynova\Commentable\ServiceProvider::class,
    
    ],
  3. Publish the package's migrations to your application and migrate.

    $ php artisan vendor:publish --provider="Slynova\Commentable\ServiceProvider" --tag="migrations"
    $ php artisan migrate

Example

You can find an usage example of this package in the laravel-commentable-example repository.

Change Logs

Nothing has been changed from the first release.

Contribution Guidelines

Support follows PSR-2 PHP coding standards, and semantic versioning.

Please report any issue you find in the issues page. Pull requests are welcome.