Admin Workflow - New UI for Admin to go through questions and answers

This commit is contained in:
Dillon Ngo
2025-01-03 01:51:33 +08:00
parent 2bbe7e4eab
commit 2e625828e7
34 changed files with 1097 additions and 25 deletions
@@ -0,0 +1,22 @@
<?php
namespace App\Classes\ValueObjects\Constants;
final class QuestionGroup {
public const _1688 = '1688';
public const APPROVE_PO = 'approve_po';
public const FILL_PO = 'fill_po';
const OPTIONS_QUESTION_GROUP = [
['text' => '1688', 'id' => QuestionGroup::_1688],
['text' => 'approve_po', 'id' => QuestionGroup::APPROVE_PO],
['text' => 'fill_po', 'id' => QuestionGroup::FILL_PO],
];
const QUESTION_GROUPS = [
QuestionGroup::_1688,
QuestionGroup::APPROVE_PO,
QuestionGroup::FILL_PO,
];
}