v1.0.1 2018-03-27 06:10 UTC

This package is not auto-updated.

Last update: 2024-09-29 05:43:04 UTC


README

安装

composer require neji0924/log

配置(Laravel >= 5.5 可省略)

config/app.php:

'providers' => [

    ... (略)

    Neji0924\Log\Providers\AppServiceProvider::class,
]
数据库

php artisan migrate 创建 logs 数据表

使用

特质

use Neji0924\Log\Loggable

<?php

namespace App;

use Neji0924\Log\Loggable;
use Illuminate\Database\Eloquent\Model;

class Article extends Model
{
    use Loggable;
}

查看日志
$article->logs // collection