mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-09-01 19:04:00 +00:00
Admin Workflow - New UI for Admin to go through questions and answers
This commit is contained in:
@@ -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,
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user