wremon/laralogs

This is my package laralogs

Fund package maintenance!
wremon

v2.0.0 2024-01-19 02:05 UTC

This package is auto-updated.

Last update: 2024-04-23 03:11:43 UTC


README

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"
LARALOGS_USER_MODEL="\App\Models\User"
LARALOGS_USER_COLUMN="email"

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

User Model

Include Laralogs to your User.php model.

use Wremon\Laralogs\Loggable;

use Loggable;

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.