dbms/app/Language/en/Customer/ServiceItem.php
2025-06-16 17:10:16 +09:00

36 lines
898 B
PHP

<?php
return [
'title' => "서비스항목정보",
'label' => [
'serviceinfo_uid' => "서비스명",
'item_type' => "항목형식",
'item_uid' => "항목",
'billing_cycle' => "납부방식",
'price' => "소비자금액",
'amount' => "서비스금액",
'start_at' => "개통일",
'status' => "상태",
'updated_at' => "수정일",
'created_at' => "신청일",
'deleted_at' => "삭제일",
],
'DEFAULTS' => [
'item_type' => "server",
'billing_cycle' => "month",
'type' => "default",
'status' => 'default'
],
"ITEM_TYPE" => SERVICE_ITEM_TYPES,
"BILLING_CYCLE" => [
"month" => "매월",
"onetime" => "일회성",
],
"STATUS" => [
'default' => "사용중",
"pause" => "일시정지",
'reservation' => "설치예약",
"terminated" => "해지",
"delete" => "삭제",
],
];