ezelink / ezelog
There is no license information available for the latest version (v1.0.0) of this package.
Loggin platform for laravel 5.2 applications
v1.0.0
2017-08-15 13:29 UTC
Requires
- php: >=5.4
This package is not auto-updated.
Last update: 2026-03-09 14:55:54 UTC
README
Logger for Laravel (Support eloquent and mongodb)
This logger modules being created for recoding the Audit logs.
Installation
Install the package using composer
composer require ezelink/ezelog
or add the following line to the composer.json under the require section and update composer
"ezelink/ezelog": "@dev"
composer update
Configurations
- Open the file add config/app.php
- Add the following line under
providers
EZELog\EZELogServiceProvider::class,
Examples
EZELog\Facades\AuditLog::log('user login failed');
OR
EZELog\Facades\AuditLog::log('user login failed', $username);