承接 farshidrezaei/laralog 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

farshidrezaei/laralog

Composer 安装命令:

composer require farshidrezaei/laralog

包简介

a Laravel package which help you to submit your application actions

README 文档

README

requirement : Laravel ^5.0

farshidrezaei/laralog is a Laravel package which help you to submit your application actions.

Install

To install through Composer, by run the following command:

composer require farshidrezaei/laralog

The package will automatically register a service provider.

then publish the package's configuration file, migrations and helpers by running:

php artisan vendor:publish --provider="FarshidRezaei\LaraLog"

Documentation

Configs

in the configs/laralog.php you can set the log drivers;

    'db_driver' => true,
    'file_driver' => true,

if db_driver => true, logs table will create, logs will submit in database and submit method return submitted log object.

if file_driver' => true , logs file will created, logs will submit in log file in "storage/app/LaraLog/" and if db_driver===false, submit method return string of submitted log line in the log file.

Create table

after install package and set configs,for create logs table, run

php artisan migrate

Usage

you can use this syntax to submit logs:

LaraLog::new()
    ->level( /* 'info', 'success', 'warning', 'danger' */) //default:'info'
    ->subject( 'Subject of the action' ) //nullable
    ->message( 'Message of the action' ) //nullable
    ->user( /* true (set who did this action.), false (dont set who did this action) */ ) //default:false
    ->submit();

for easy usage, you can use helper function, too:

laralog()
    ->level( 'info')
    ->subject( 'Product' )
    ->message( "Product [$product->title]($product->id) created." )
    ->user( true )
    ->submit();

you can access to submitted log :

$log = laralog()
       ->level( 'info')
       ->subject( 'Product' )
       ->message( "Product Created" )
       ->user( false )
       ->submit();

Assuming db_driver===true in configs/laralog.php, $log is equal to :

{
    "id": 1,
    "level": "info",
    "subject": "Product",
    "message": "Product created.",
    "user_id": null
}

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 9
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 8
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-05-16

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固