giftcon_dev/config/qna_state.php

21 lines
513 B
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| QnA state map
|--------------------------------------------------------------------------
| state => [label, badge_class]
*/
'state_map' => [
'a' => ['접수', 'bg-primary'],
'b' => ['접수완료', 'bg-success'],
'c' => ['처리중', 'bg-info'],
'd' => ['처리중', 'bg-warning text-dark'],
'e' => ['완료', 'bg-dark'],
],
];