├── .editorconfig ├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── CHANGELOG.md ├── CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── comment.php ├── database └── migrations │ └── create_comments_table.php.stub ├── phpunit.xml ├── src ├── CanComment.php ├── Contracts │ └── Commentable.php ├── HasComments.php ├── LaravelCommentServiceProvider.php └── Models │ └── Comment.php └── tests ├── CommentTest.php ├── Models ├── Product.php └── User.php ├── TestCase.php └── resources └── database └── migrations ├── 0000_00_00_000000_products.php └── 0000_00_00_000000_users.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/composer.json -------------------------------------------------------------------------------- /config/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/config/comment.php -------------------------------------------------------------------------------- /database/migrations/create_comments_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/database/migrations/create_comments_table.php.stub -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/CanComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/src/CanComment.php -------------------------------------------------------------------------------- /src/Contracts/Commentable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/src/Contracts/Commentable.php -------------------------------------------------------------------------------- /src/HasComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/src/HasComments.php -------------------------------------------------------------------------------- /src/LaravelCommentServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/src/LaravelCommentServiceProvider.php -------------------------------------------------------------------------------- /src/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/src/Models/Comment.php -------------------------------------------------------------------------------- /tests/CommentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/tests/CommentTest.php -------------------------------------------------------------------------------- /tests/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/tests/Models/Product.php -------------------------------------------------------------------------------- /tests/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/tests/Models/User.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/resources/database/migrations/0000_00_00_000000_products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/tests/resources/database/migrations/0000_00_00_000000_products.php -------------------------------------------------------------------------------- /tests/resources/database/migrations/0000_00_00_000000_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShortlyMAB/laravel-comment/HEAD/tests/resources/database/migrations/0000_00_00_000000_users.php --------------------------------------------------------------------------------