LaraNotes
  • 😍Welcome
  • 🤑Usefull Packages
    • Laravel Auth Log
    • Artisan UI Package
    • VSCODE Extension
    • Livewire Power Grid
    • Migration Generator
    • Larastarters
    • Dumper
    • Mailwind
    • Laravel Security
    • API Orion
    • Squire
    • Bladewind ui
    • Pint
    • Hydra
    • Laravel Markable
    • Chartify
  • 😎Tips
    • Laravel Queues
      • Jobs and Queues 101
    • Pagination
    • Eager Loading
    • First Contributions
    • Laravel Best Practices
    • Laravel Sail
    • Laravel Examples
    • Twitter login with breeze api
    • Deploy Laravel App on AWS
  • 👨‍💻Editor
    • Maool
    • Tinkerun
    • KIT
    • PHPSandbox
    • Starship
    • Laravel Cheat Sheet
Powered by GitBook
On this page
  • Installation
  • Learn More
  1. Usefull Packages

Laravel Auth Log

PreviousWelcomeNextArtisan UI Package

Last updated 3 years ago

Package Logo

Installation

You can install the package via composer:

composer require rappasoft/laravel-authentication-log

If you want the location features you must also install torann/geoip:

composer require torann/geoip

You can publish and run the migrations with:

php artisan vendor:publish --provider="Rappasoft\LaravelAuthenticationLog\LaravelAuthenticationLogServiceProvider" --tag="authentication-log-migrations"
php artisan migrate

You can publish the view/email files with:

php artisan vendor:publish --provider="Rappasoft\LaravelAuthenticationLog\LaravelAuthenticationLogServiceProvider" --tag="authentication-log-views"

You can publish the config file with:

php artisan vendor:publish --provider="Rappasoft\LaravelAuthenticationLog\LaravelAuthenticationLogServiceProvider" --tag="authentication-log-config"

If you installed torann/geoip you should also publish that config file to set your defaults:

php artisan vendor:publish --provider="Torann\GeoIP\GeoIPServiceProvider" --tag=config

Learn More

🤑
GitHub - rappasoft/laravel-authentication-log: Log user authentication details and send new device notifications.GitHub
Logo