vis / comments
此包的最新版本(1.0.2)没有可用的许可证信息。
1.0.2
2015-07-31 16:08 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2024-09-14 18:34:47 UTC
README
在 composer.json 中添加到 require 块
"vis/comments": "1.0.*"
执行操作
composer update
在 app.php 中添加
'Vis\Comments\CommentsServiceProvider',
执行数据库迁移
php artisan migrate --package=vis/comments
发布 js 文件
php artisan asset:publish vis/comments
如果需要,发布视图
php artisan view:publish vis/comments
前端使用
在页面上显示评论表单
{{Comments::showForm($page)}}
显示此页面的评论列表
{{Comments::showListComments($page)}}