mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 20:44:01 +00:00
16 lines
353 B
PHP
16 lines
353 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
class Notifications
|
|
{
|
|
public const NEW_ARRIVED_PARCEL = [
|
|
'title' => 'New Arrived Parcel',
|
|
'message' => 'you have received new parcel for your order #-'
|
|
];
|
|
|
|
public const UNDEFINED = [
|
|
'title' => 'UNDEFINED TITLE',
|
|
'message' => 'undefined message'
|
|
];
|
|
} |