carlosrgzm/activity-log

Register all user's information in your Laravel 5 application

v1.0.10 2016-10-28 11:20 UTC

This package is not auto-updated.

Last update: 2024-05-08 23:43:52 UTC


README

Register all user's information in your Laravel 5 application.

Latest Stable Version Total Downloads Latest Unstable Version License

Installation

  1. Add carlosrgzm/activity-log to composer.json.

"carlosrgzm/activity-log": "1.0.*"

  1. Run composer update to pull down the latest version.

  2. Now open up app/config/app.php and add the service provider to your providers array.

'providers' => array( Carlosrgzm\ActivityLog\ActivityLogServiceProvider::class, ),

  1. Add the alias to the app.php section.

'aliases' => array( 'ActivityLog' => Carlosrgzm\ActivityLog\Models\ActivityLog::class,, ),

Configuration

Run php artisan vendor:publish to generate the migrations and the configuration file in your config folder.

Usage

For using this package you can add this code in your templates

$act = new ActivityLog;

$data = new ActivityLogData($action, $contentType, $contentId, $details, $userId);

$act->log($data);

All params for ActivityLogData() are optional. The 'user_id' is automatically set to the current user if you have 'auto_set_user_id' => true in your activitylog.php config file.

You should review the config/activitylog.php to be sure all params are correct.