定制 hankin/laravel-comment 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

hankin/laravel-comment

最新稳定版本:v0.1

Composer 安装命令:

composer require hankin/laravel-comment

包简介

Just another comment system for your laravel project

README 文档

README

部署步骤

$ composer require hankin/laravel-comment

If you don't use auto-discovery, or using Laravel version < 5.5 Add service provider to your app.php file

\Hankin\LaravelComment\CommentServiceProvider::class

Publish configurations and migrations, then migrate comments table.

php artisan vendor:publish
php artisan migrate

Add canComment trait to your User model.

use Hankin\LaravelComment\CanComment;

class User extends Model
{
    use canComment;
    
    // ...   
}

Add Commentable interface and HasComments trait to your commentable model(s).

use Hankin\LaravelComment\Contracts\Commentable;
use Hankin\LaravelComment\HasComments;

class Product extends Model implements Commentable
{
    use HasComments;
    
    // ...   
}

If you want to have your own Comment Model create a new one and extend my Comment model.

use Hankin\LaravelComment\Models\Comment LaravelComment;

class Comment extends LaravelComment
{
    // ...
}

统计信息

  • 总下载量: 21
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-04-10

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固