├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── config └── laravel-commentable.php ├── migrations └── create_comments_table.php └── src ├── Comment.php ├── Commentable.php └── CommentableServiceProvider.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Commentable/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Commentable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Commentable/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Commentable/HEAD/composer.json -------------------------------------------------------------------------------- /config/laravel-commentable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Commentable/HEAD/config/laravel-commentable.php -------------------------------------------------------------------------------- /migrations/create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Commentable/HEAD/migrations/create_comments_table.php -------------------------------------------------------------------------------- /src/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Commentable/HEAD/src/Comment.php -------------------------------------------------------------------------------- /src/Commentable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Commentable/HEAD/src/Commentable.php -------------------------------------------------------------------------------- /src/CommentableServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Commentable/HEAD/src/CommentableServiceProvider.php --------------------------------------------------------------------------------