eugene/apilog

记录您的API日志

v1.0 2017-07-19 01:44 UTC

This package is not auto-updated.

Last update: 2024-09-29 02:58:51 UTC


README

记录接口请求日志

步骤

composer require eugene/apilog

在 config/app.php 中添加以下行

Eugene\ApiLog\RecordProvider::class,

执行数据库迁移,生成数据表 visit_log

php artisan migrate

在您的路由上添加中间件 api.log

Route::any('for',function(){
    return 'bar';
})->middleware('api.log');

更新日期 20180124