eugene/apilog

record your api's logs

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

This package is not auto-updated.

Last update: 2025-06-22 06:26:22 UTC


README

记录接口请求日志

Steps

composer require eugene/apilog

add the line in config/app.php

Eugene\ApiLog\RecordProvider::class,

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

php artisan migrate

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

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

update 20180124