zahid566 / logininfo
There is no license information available for the latest version (dev-main) of this package.
This will help you to save user's login information.
dev-main
2023-07-29 14:37 UTC
This package is auto-updated.
Last update: 2026-03-29 01:01:45 UTC
README
##This will help you to save user's login information in database
System Architecture
- Laravel Version 10.x
- php 8.1
Features
- Keep tracking users activity .
- Users's IP address will be saved.
- Current status of the user will be saved as an active user.
- Last login time will be stored.
Installation
composer require zahid566/logininfo:dev-main
Migration: After successfully installing the package, migration file need to be run .
php artisan migrate
After publishing the migrate file, add the service provider in provider section. Config -> app.php file
LoginInfo\loginInfoServiceProvider::class,
Before rendering the home page, write the code in controller
Use library : LoginInfo\Http\Controllers\LoginInfoController;
$objLoginInfoClass = new LoginInfoController();
$user_id = Auth::id();
$objLoginInfoClass->index($user_id);