daneeveritt / login-notifications
Login notifications for Laravel
Installs: 12 787
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 0
Forks: 1
Open Issues: 0
pkg:composer/daneeveritt/login-notifications
Requires
- php: ^5.6|^7.0
- laravel/framework: ~5.3.0|~5.4.0
- nesbot/carbon: 1.22.*
This package is not auto-updated.
Last update: 2025-12-06 04:40:07 UTC
README
A login notification utility for Laravel projects. Supports Laravel 5.3 and 5.4. Designed for use with Pterodactyl Panel but should work with most Laravel applications.
This package assumes that you have queues setup, as well as support for a database notification.
Installation
First install with composer.
composer require daneeveritt/login-notifications
Then open config/app.php and add the povider to the service providers array.
'providers' => [
...
DaneEveritt\LoginNotifications\NotificationServiceProvider::class,
],
After installation, any login successes or failures will send the user an email.