├── .php_cs.dist.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── test ├── database ├── factories │ └── UserFactory.php └── migrations │ └── create_users_table.php.stub ├── phpstan-baseline.neon ├── phpstan.neon.dist ├── resources └── views │ ├── .gitkeep │ └── emails │ └── password-changed-notification.blade.php └── src ├── Contracts └── PasswordChangedNotificationContract.php ├── Mail └── PasswordChangedNotificationMail.php ├── Observers └── PasswordChangedObserver.php ├── PasswordChangedNotificationServiceProvider.php └── Traits ├── ObservePasswordChanged.php └── PasswordChangedNotificationTrait.php /.php_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/.php_cs.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/composer.json -------------------------------------------------------------------------------- /config/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/create_users_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/database/migrations/create_users_table.php.stub -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/emails/password-changed-notification.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/resources/views/emails/password-changed-notification.blade.php -------------------------------------------------------------------------------- /src/Contracts/PasswordChangedNotificationContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/src/Contracts/PasswordChangedNotificationContract.php -------------------------------------------------------------------------------- /src/Mail/PasswordChangedNotificationMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/src/Mail/PasswordChangedNotificationMail.php -------------------------------------------------------------------------------- /src/Observers/PasswordChangedObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/src/Observers/PasswordChangedObserver.php -------------------------------------------------------------------------------- /src/PasswordChangedNotificationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/src/PasswordChangedNotificationServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/ObservePasswordChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/src/Traits/ObservePasswordChanged.php -------------------------------------------------------------------------------- /src/Traits/PasswordChangedNotificationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laratipsofficial/password-changed-notification/HEAD/src/Traits/PasswordChangedNotificationTrait.php --------------------------------------------------------------------------------