hongen/logok

There is no license information available for the latest version (1.0.2) of this package.

logok

1.0.2 2018-11-14 01:31 UTC

This package is not auto-updated.

Last update: 2024-05-09 15:25:40 UTC


README

Logok for Laravel

安装: composer require hongen/logok

运行迁移创建info表: php artisan migrate

用法:

use Logok;

class User{
    public function test(){
        Logok::info('message');
    }
}