vis/rating

此包最新版本(1.0.31)没有可用的许可信息。

1.0.31 2015-08-31 14:09 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:31:26 UTC


README

在 composer.json 的 require 块中添加

 "vis/rating": "1.0.*"

执行

composer update

在 app.php 中添加

  'Vis\Rating\RatingServiceProvider',

执行表迁移

   php artisan migrate --package=vis/rating

发布 js 文件

   php artisan asset:publish vis/rating

在前端使用

在页脚连接 js 文件

<script src="{{asset('packages/vis/rating/rating.js')}}"></script>

页面上的投票代码

{{Rating::showVote($page)}}

查看文章评分的页面代码

{{Rating::showResult($page)}}