定制 neuecommerce/visible-records 二次开发

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

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

neuecommerce/visible-records

Composer 安装命令:

composer require neuecommerce/visible-records

包简介

Handle visibility state on your Laravel Eloquent model records.

README 文档

README

GitHub Tests Action Status GitHub Code Analysis Action Status Software License Latest Version on Packagist Total Downloads

An Activity Logger for Laravel Eloquent models.

Installation

  1. Install the package via Composer:
composer require neuecommerce/visible-records

Implementation

Automatic

Implementing the Visible Records package on your Eloquent models, is quite simple and can be done in 3 just simple steps:

  1. Implement the NeueCommerce\VisibleRecords\HasVisibilityInterface interface on your model(s).

  2. Implement the NeueCommerce\VisibleRecords\HasVisibility trait on your model(s).

  3. Create a database migration that adds the visibile_at nullable timestamp column to your model(s) table.

Here's an example of a model with the proper implementation:

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use NeueCommerce\VisibleRecords\HasVisibilityInterface;
use NeueCommerce\VisibleRecords\HasVisibility;

class Product extends Model implements HasVisibilityInterface
{
    use HasVisibility;

    public $table = 'products';
}

Here's an example of a database migration:

<?php

...

Usage

...

Testing

composer test

Contributing

Thank you for your interest. Here are some of the many ways to contribute.

License

The MIT License (MIT). Please see License File for more information.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-09-10