Voucherify phase 2

This commit is contained in:
Dillon
2023-07-17 21:29:19 +08:00
parent 46ae50b569
commit c7927847c4
162 changed files with 6063 additions and 298 deletions
@@ -0,0 +1,19 @@
<?php
namespace App\Classes\ValueObjects\Constants;
class MilestoneCreationOptions
{
const OPTIONS_MILESTONE_NAME= [
['text' => 'MILESTONE 1', 'id' => Milestones::MILESTONE_1],
['text' => 'MILESTONE 2', 'id' => Milestones::MILESTONE_2],
['text' => 'MILESTONE 3', 'id' => Milestones::MILESTONE_3],
// ['text' => 'MILESTONE 4', 'id' => Milestones::MILESTONE_4],
// ['text' => 'MILESTONE 5', 'id' => Milestones::MILESTONE_5],
// ['text' => 'MILESTONE 6', 'id' => Milestones::MILESTONE_6],
// ['text' => 'MILESTONE 7', 'id' => Milestones::MILESTONE_7],
// ['text' => 'MILESTONE 8', 'id' => Milestones::MILESTONE_8],
// ['text' => 'MILESTONE 9', 'id' => Milestones::MILESTONE_9],
// ['text' => 'MILESTONE 10', 'id' => Milestones::MILESTONE_10],
];
}