toandq71 / simple-log
包日志活动
V1.1.4
2024-05-13 08:41 UTC
Requires
- php: ^8.2
- illuminate/support: ^11.0
README
安装
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 ]); }