luoyangpeng/action-log

A laravel package of ActionLog
10,890 57
Install
composer require luoyangpeng/action-log
Latest Version:1.1
PHP:>=5.4.0
License:MIT
Last Updated:Jan 19, 2018
Links: GitHub  ·  Packagist
Maintainer: luoyangpeng

action-log

Laravel 5 操作日志自动记录

Installation

The ActionLog Service Provider can be installed via Composer by requiring the luoyangpeng/action-log package and setting the minimum-stability to dev (required for Laravel 5) in your project's composer.json.

{
    "require": {
       
        "luoyangpeng/action-log": "~1.0"
    },
   
}

or

Require this package with composer:

composer require luoyangpeng/action-log 

Update your packages with composer update or install with composer install.

Usage

To use the ActionLog Service Provider, you must register the provider when bootstrapping your Laravel application. There are essentially two ways to do this.

Find the providers key in config/app.php and register the ActionLog Service Provider.

    'providers' => [
        // ...
        'luoyangpeng\ActionLog\ActionLogServiceProvider',
    ]

for Laravel 5.1+

    'providers' => [
        // ...
        luoyangpeng\ActionLog\ActionLogServiceProvider::class,
    ]

Find the aliases key in config/app.php.

    'aliases' => [
        // ...
        'ActionLog' => 'luoyangpeng\ActionLog\Facades\ActionLogFacade',
    ]

for Laravel 5.1+

    'aliases' => [
        // ...
        'ActionLog' => luoyangpeng\ActionLog\Facades\ActionLogFacade::class,
    ]

Configuration

To use your own settings, publish config.

$ php artisan vendor:publish

config/actionlog.php

//填写要记录的日志的模型名称
	return [
		'\App\Models\Users',
	];

Last Step

run: $ php artisan migrate

Demo

自动记录操作日志,数据库操作需按如下:


update

$users = Users::find(1);
$users->name = "myname";
$users->save();

add

$users = new Users();
$users->name = "myname";
$users->save()

delete

Users:destroy(1);

主动记录操作日志


use ActionLog

ActionLog::createActionLog($type,$content);

Related Packages

tuntron/laravel-action-log

A laravel package of ActionLog

50 1
qylinfly/action-log

A laravel package of ActionLog

285 1
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,312 160
kavenegar/laravel

laravel 4 and 5 kavenegar integration

366,462 86
laravel-ja/laravel

The Laravel Framework.

5,667 17