教你使用laravel-like-comment评论插件
时间:2022-03-03 11:47
下面由Laravel教程栏目给大家介绍laravel-like-comment评论插件的使用,希望对需要的朋友有所帮助!
Laravel like comment
laravel-like-comment 是一款基于ajax的Laravel评论系统.用户需要登录后对自己喜欢文章或者其它模块进行评论、点赞.
功能
- 喜欢
- 不喜欢
- 评论
- 对评论信息 支持与否
- 用户头像
安装
运行
composer require risul/laravel-like-comment
配置服务
在 你的 service providerr
列表中添加
risul\LaravelLikeComment\LikeCommentServiceProvider::class
发布配置服务
php artisan vendor:publish
迁移数据表,并创建评论等相关联的数据表.
php artisan migrate
在你需要评论的页面head中添加评论css样式.
<link href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/components/icon.min.css" rel="stylesheet"> <link href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/components/comment.min.css" rel="stylesheet"> <link href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/components/form.min.css" rel="stylesheet"> <link href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/components/button.min.css" rel="stylesheet"> <link href="{{ asset('/vendor/laravelLikeComment/css/style.css') }}" rel="stylesheet">
添加 jquery 和 script
注意:因原文中jquery使用到 google资源 这里我修改成国内的。
<script src="https://cdn.jsdelivr.net/npm/jquery@1.12.4/dist/jquery.min.js"></script> <script src="{{ asset('/vendor/laravelLikeComment/js/script.js') }}" type="text/javascript"></script>
在 config/laravelLikeComment.php
加入 user 模型 路径
注意:看好自己的user模型路径,是否修改,默认路径是下面的。
'userModel' => 'App\User'
在你的 user 模型中加入下面的代码.
/** * Return the user attributes. * @return array */ public static function getAuthor($id) { $user = self::find($id); return [ 'id' => $user->id, 'name' => $user->name, 'email' => $user->email, 'url' => '', // Optional 'avatar' => 'gravatar', // Default avatar 'admin' => $user->role === 'admin', // bool ]; }
使用
在你想要添加点赞的页面中加入下面代码.
@include('laravelLikeComment::like', ['like_item_id' => 'image_31'])
like_item_id:
是将要整合所在模块的标记 id .
比如,我想要在文章post模型,文章展示页面添加此功能,并在数据表中标记下来,这条数据的详细信息,可以这样组合标记 post_1(post为文章模型,1为文章id)。
引用后如下:
@include('laravelLikeComment::like', ['like_item_id' => "post_".$post->id])
在你想要添加评论的模块中添加下面代码:
标记方式如上
@include('laravelLikeComment::comment', ['comment_item_id' => 'video_12'])
comment_item_id:
是将要整合所在模块的评论标记 id .
以上就是教你使用laravel-like-comment评论插件的详细内容,更多请关注www.gxlsystem.com其它相关文章!