mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-27 16:34:27 +00:00
12 lines
236 B
PHP
12 lines
236 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 #-'
|
|
];
|
|
|
|
} |