mushketer888/laravel-dblog

Extending Laravel Logger with Eqloquent Logging in DB

0.5.6 2017-08-08 19:58 UTC

This package is not auto-updated.

Last update: 2024-04-14 01:30:10 UTC


README

Latest Stable Version Total Downloads License Latest Unstable Version

This package duplicates Log information to database table. Please report bugs

Install

Via Composer

$ composer require mushketer888/laravel-dblog

Add Service Provider to config/app.php in providers section

Mushketer888\LaravelDblog\ServiceProvider::class,

You need to run the migrations for this package.

$ php artisan vendor:publish --provider="Mushketer888\LaravelDblog\ServiceProvider" 
$ php artisan migrate

Usage

Use Log Facade like you normally use.

    Log::info("DBLog works")