yajra / laralogs

Logs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Laralogs

This package is for centralized logging of multiple Laravel application into one connection.

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads


Installation

You can install the package via composer:

composer require wremon/laralogs

Configuration

After installing, publish the config using the command below:

php artisan vendor:publish --provider="Wremon\Laralogs\LaralogsServiceProvider"

Set Up .env

LARALOGS_DB_CONNECTION=sqlite
LARALOGS_DB_HOST=
LARALOGS_DB_PORT=
LARALOGS_DB_DATABASE=
LARALOGS_DB_USERNAME=
LARALOGS_DB_PASSWORD=
LARALOGS_DB_DATABASE="/Users/username/www/my-project/database/database.sqlite"
LARALOGS_APP_NAME="My App Name"

The LARALOGS_APP_NAME determines the name of the application in the logging table.

Usage

Get all the authentication logs of a user

User::find(1)->logs

Get the last authentication logs of a user

User::find(1)->lastLogin()
User::find(1)->lastLoginIp()

Get the previous authentication logs of a user

User::find(1)->previousLogin()
User::find(1)->previousLoginIp()

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

Logs

License:MIT License


Languages

Language:PHP 100.0%