vis/comments_l5

L5的评论

1.0.35 2017-04-06 07:57 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:53:09 UTC


README

在 composer.json 中添加到 require 块

 "vis/comments_l5": "1.0.*"

执行

composer update

在 app.php 中添加

  Vis\Comments\CommentsServiceProvider::class,

执行表迁移

    php artisan migrate --path=vendor/vis/comments_l5/src/Migrations

发布 js 文件

   php artisan vendor:publish --tag=comments --force

复制评论的定义

   php artisan vendor:publish --tag=config_definition --force

如果需要,发布视图

   php artisan vendor:publish --tag=comments_views --force

前端使用

在页面上显示评论表单

{!! Comments::showForm($page) !!}

显示该页面的评论列表

{!! Comments::showListComments($page) !!}