Files
exchange-2.0/app/Classes/ValueObjects/Constants/CashBack.php
T
glovetleong 3fcfcf9de9 cash back
2022-04-01 10:12:23 +08:00

56 lines
1.0 KiB
PHP

<?php
namespace App\Classes\ValueObjects\Constants;
final class CashBack {
public const MAX = 15000;
public const DISPLAY_MAX = 50000;
public const SEGMENT = [
'0' => [
'min_value' => 0,
'max_value' => 2000,
'weight' => [
'0' => 80,
'1' => 18,
'2' => 2,
],
'percent' => [
'0' => 0.002,
'1' => 0.005,
'2' => 0.02,
]
],
'1' => [
'min_value' => 2001,
'max_value' => 10000,
'weight' => [
'0' => 85,
'1' => 10,
'2' => 5,
],
'percent' => [
'0' => 0.002,
'1' => 0.005,
'2' => 0.02,
]
],
'2' => [
'min_value' => 10001,
'max_value' => 100000,
'weight' => [
'0' => 70,
'1' => 20,
'2' => 10,
],
'percent' => [
'0' => 0.002,
'1' => 0.005,
'2' => 0.02,
]
],
];
}