16 lines
454 B
PHP
16 lines
454 B
PHP
<?php
|
|
return [
|
|
'project_status' => [
|
|
\App\Models\Project::STATUS_OPENING => '進行中',
|
|
\App\Models\Project::STATUS_CLOSED => '結案',
|
|
],
|
|
'payment_status' => [
|
|
\App\Models\Payment::STATUS_UNPAID => '未付款',
|
|
\App\Models\Payment::STATUS_PAID => '已付款',
|
|
],
|
|
'payment_type' => [
|
|
\App\Models\Payment::TYPE_DEPOSIT => '訂金',
|
|
\App\Models\Payment::TYPE_FINAL => '尾款',
|
|
]
|
|
];
|