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

Installs: 43

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:package

v1.0.0 2017-08-15 13:29 UTC

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

  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);