2017 © Pedro Peláez
 

library laravel-activity-log

Laravel Activity Log

image

vjlau/laravel-activity-log

Laravel Activity Log

  • Saturday, February 18, 2017
  • by vj-lau
  • Repository
  • 1 Watchers
  • 1 Stars
  • 17 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

laravel-activity-log

Laravel Activity Log, (*1)

Installation

Make sure you have the MongoDB PHP driver installed. You can find installation instructions at http://php.net/manual/en/mongodb.installation.php, (*2)

Install through Composer, (*3)

composer require vjlau/laravel-activity-log

Configuration

And add a new mongodb connection config/database.php:, (*4)

'mongodb' => [
    'driver'   => 'mongodb',
    'host'     => env('DB_HOST', 'localhost'),
    'port'     => env('DB_PORT', 27017),
    'database' => env('DB_DATABASE'),
    'username' => env('DB_USERNAME'),
    'password' => env('DB_PASSWORD'),
    'options'  => [
        'database' => 'admin' // sets the authentication database required by mongo 3
    ]
],

Setup

Step 1: Register the Service Provider

Add the ActivityLogServiceProvider to the providers array in the config/app.php file;, (*5)

Jenssegers\Mongodb\MongodbServiceProvider::class,
VJLau\ActivityLog\ActivityLogServiceProvider::class,
VJLau\ActivityLog\QueryLogServiceProvider::class,

Step 2: Publish config

php artisan vendor:publish --provider="VJLau\ActivityLog\ActivityLogServiceProvider" --tag="config"

Usage

To subscribe model for activity log just use VJLau\ActivityLog\Loggable, (*6)

use VJLau\ActivityLog\Loggable;

To add usage in your model, (*7)

use Loggable;

To add middleware in your kernel, (*8)

protected $routeMiddleware = [
    ......
    'log.request' => \VJLau\ActivityLog\Middleware\LogAfterRequest::class,
];

Credits

https://github.com/leomarquine/activity-log - Activity Log for Laravel Eloquent Models, (*9)

License

MIT - http://opensource.org/licenses/MIT, (*10)

The Versions