This commit is contained in:
2024-01-30 23:40:29 +05:00
parent b3d9545900
commit 33d3980a6b
5 changed files with 56 additions and 46 deletions

26
app/Events/EventType.php Normal file
View File

@@ -0,0 +1,26 @@
<?php
namespace App\Events;
class EventType
{
/**
* When user logs in application
*/
public const REGISTER = 'REGISTER';
/**
* When user logs in application
*/
public const LOGIN = 'LOGIN';
/**
* When user logs in application
*/
public const LOGOUT = 'LOGOUT';
/**
* When user logs in application
*/
public const PASSWORD_RESET = 'PASSWORD_RESET';
}