承接 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
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

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

其他信息

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