22 lines
471 B
PHP
22 lines
471 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',
|
|
],
|
|
];
|