DaneEveritt / login-notifications by daneeveritt

Login notifications for Laravel
12,723
4
0
Package Data
Maintainer Username: daneeveritt
Maintainer Contact: dane@daneeveritt.com (Dane Everitt)
Package Create Date: 2017-04-14
Package Last Update: 2017-10-07
Language: PHP
License: MIT
Last Refreshed: 2024-04-23 03:11:29
Package Statistics
Total Downloads: 12,723
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 4
Total Watchers: 0
Total Forks: 1
Total Open Issues: 0

Laravel Login Notifications

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.