mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 12:34:01 +00:00
34 lines
803 B
PHP
34 lines
803 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
|
|
class Notifications
|
|
{
|
|
|
|
public const UNDEFINED = [
|
|
'title' => 'Unknown Action',
|
|
'message' => 'unknown message..'
|
|
];
|
|
|
|
public const AUTHENTICATION = [
|
|
'title' => 'Authentication',
|
|
'message' => 'You have successfully logged in to your account'
|
|
];
|
|
|
|
public const REGISTRATION = [
|
|
'title' => 'Registration',
|
|
'message' => 'You have successfully created a new account'
|
|
];
|
|
|
|
public const RESET_PASSWORD = [
|
|
'title' => 'Reset Password',
|
|
'message' => 'You have successfully sent you an email to reset your password'
|
|
];
|
|
|
|
public const CHANGE_PASSWORD = [
|
|
'title' => 'Change Password',
|
|
'message' => 'You password has changed successfully'
|
|
];
|
|
|
|
} |