mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-20 04:53:56 +00:00
21 lines
593 B
PHP
21 lines
593 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';
|
|
public const PROM150PERCENT = 'PROM150%';
|
|
|
|
const OPTIONS_SORRY = [
|
|
['text' => 'SORRY 50', 'id' => Vouchers::SORRY_50],
|
|
['text' => 'SORRY 100', 'id' => Vouchers::SORRY_100],
|
|
['text' => 'SORRY 200', 'id' => Vouchers::SORRY_200],
|
|
['text' => 'PROM150%', 'id' => Vouchers::PROM150PERCENT],
|
|
];
|
|
}
|