30 lines
663 B
PHP
30 lines
663 B
PHP
<?php
|
|
|
|
return [
|
|
'consultation_status' => [
|
|
'pending' => 'Pending',
|
|
'approved' => 'Approved',
|
|
'rejected' => 'Rejected',
|
|
'completed' => 'Completed',
|
|
'no_show' => 'No Show',
|
|
'cancelled' => 'Cancelled',
|
|
],
|
|
'payment_status' => [
|
|
'pending' => 'Pending',
|
|
'received' => 'Received',
|
|
'na' => 'N/A',
|
|
],
|
|
'consultation_type' => [
|
|
'free' => 'Free',
|
|
'paid' => 'Paid',
|
|
],
|
|
'timeline_status' => [
|
|
'active' => 'Active',
|
|
'archived' => 'Archived',
|
|
],
|
|
'post_status' => [
|
|
'draft' => 'Draft',
|
|
'published' => 'Published',
|
|
],
|
|
];
|