mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 20:43:56 +00:00
18 lines
437 B
PHP
18 lines
437 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
class RewardCreationOptions
|
|
{
|
|
const OPTIONS_IS_ACTIVE = [
|
|
['text' => 'No', 'id' => 0],
|
|
['text' => 'Yes', 'id' => 1],
|
|
];
|
|
|
|
const OPTIONS_TYPE = [
|
|
['text' => 'User Specific', 'id' => RewardType::REWARD_INDIVIDUAL],
|
|
['text' => 'Amount', 'id' => RewardType::REWARD_AMOUNT],
|
|
['text' => 'Code', 'id' => RewardType::REWARD_CODE],
|
|
];
|
|
}
|