bidzm / laravel-activity-log
Laravel Activity Log
1.1.1
2017-09-02 08:26 UTC
Requires
- php: >=5.5.9
- cogpowered/finediff: ^0.3.1
- illuminate/database: ^5.3.0
- illuminate/events: ^5.3.0
- illuminate/support: ^5.3.0
- jenssegers/mongodb: ^3.1
This package is not auto-updated.
Last update: 2024-11-18 08:06:36 UTC
README
Laravel Activity Log
Installation
Make sure you have the MongoDB PHP driver installed. You can find installation instructions at http://php.net/manual/en/mongodb.installation.php
Install through Composer
composer require bidzm/laravel-activity-log
Configuration
And add a new mongodb connection config/database.php
:
'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;
Jenssegers\Mongodb\MongodbServiceProvider::class,
Bidzm\ActivityLog\ActivityLogServiceProvider::class,
Step 2: Publish config
php artisan vendor:publish --provider="Bidzm\ActivityLog\ActivityLogServiceProvider" --tag="config"
Usage
To subscribe model for activity log just use Bidzm\ActivityLog\Loggable
use Bidzm\ActivityLog\Loggable;
To add usage in your model
use Loggable;
Credits
https://github.com/vjlau/laravel-activity-log - Activity Log for Laravel