xiuchanghu/activitylogs

laravel activitylogs

Installs: 548

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/xiuchanghu/activitylogs

1.0.0 2015-09-22 02:59 UTC

This package is not auto-updated.

Last update: 2025-10-26 00:40:11 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,
]);