luffies/laravel-api-log

一个 Laravel API 日志 SDK。

1.0.0 2021-12-08 09:18 UTC

This package is auto-updated.

Last update: 2024-09-09 13:22:10 UTC


README

一个通过中间件简单记录 Laravel API 日志的包。

安装

$ composer require luffies/laravel-api-log

配置

发布配置文件

$ php artisan vendor:publish --tag=api-log-config

发布迁移文件

$ php artisan vendor:publish --tag=api-log-migrations

生成数据库结构

$ php artisan migrate

使用

在需要添加记录的路由中加入 api.log 中间件,也可以自定义中间件

Route::get('/test', ['uses' => 'App\Http\Controllers\TestController@index'])->middleware('api.log');

许可证

MIT