ezelink / ezelog
Loggin platform for laravel 5.2 applications
Installs: 43
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=5.4
This package is not auto-updated.
Last update: 2025-01-27 09:20:34 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);