This package is for centralized logging of multiple Laravel application into one connection.
You can install the package via composer:
composer require wremon/laralogs
After installing, publish the config using the command below:
php artisan vendor:publish --provider="Wremon\Laralogs\LaralogsServiceProvider"
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.
Include Laralogs to your User.php model.
use Wremon\Laralogs\Loggable;
use Loggable;
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()
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.