mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
19 lines
481 B
PHP
19 lines
481 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class Vouchers {
|
|
|
|
public const WELCOME_50_PERCENT_OFF = 'WELCOME50%OFF';
|
|
|
|
public const SORRY_50 = 'SORRY50';
|
|
public const SORRY_100 = 'SORRY100';
|
|
public const SORRY_200 = 'SORRY200';
|
|
|
|
const OPTIONS_SORRY = [
|
|
['text' => 'SORRY 50', 'id' => Vouchers::SORRY_50],
|
|
['text' => 'SORRY 100', 'id' => Vouchers::SORRY_100],
|
|
['text' => 'SORRY 200', 'id' => Vouchers::SORRY_200],
|
|
];
|
|
}
|