toandq71/simple-log

包日志活动

安装: 4

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:false

V1.1.4 2024-05-13 08:41 UTC

This package is not auto-updated.

Last update: 2024-10-01 08:51:49 UTC


README

PHP v8.2

Laravel v11.x

安装

composer require toandq71/simple-log

运行命令

php artisan histories:install
php artisan migrate

使用

use toandq71\SimpleLog\Interface\LogHistoryInterface;

// Coding in file controller
public function testLog(Request $request)
{
    $log = app()->get(LogHistoryInterface::class);
    
    // Save log
    $log->saveHistory([
        'action' => 'created_user',
        'created_by' => 1
    ]);
}