imuneer / ezelog by imuneer

Loggin platform for laravel 5.2 applications
43
0
1
Package Data
Maintainer Username: imuneer
Maintainer Contact: muneer@ezelink.com (Muneer Shaheed)
Package Create Date: 2017-08-15
Package Last Update: 2019-08-20
Language: PHP
License: Unknown
Last Refreshed: 2025-02-06 03:01:50
Package Statistics
Total Downloads: 43
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

EZELog

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

  1. Open the file add config/app.php
  2. 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);