xiuchanghu/activitylogs

laravel activitylogs

1.0.0 2015-09-22 02:59 UTC

This package is not auto-updated.

Last update: 2024-11-23 19:06:00 UTC


README

#初始化

composer require xiuchanghu/activitylogs 1.0.0
文件config/app.php
providers数组增加
'Xiuchanghu\ActivityLogs\ActivityLogsServiceProvider',
aliases下增加
'Activity' => 'Xiuchanghu\ActivityLogs\Models\Activity',
php artisan migrate --path=vendor/xiuchanghu/activitylogs/src/migrations
php artisan vendor:publish

#使用

Activity::log([
    'contentId'   => $user->id,
    'contentType' => 'User',
    'action'      => 'Create',
    'description' => '建立用户',
    'details'     => 'Username: '.$user->username,
]);