libra/lang/en/enums.php

26 lines
569 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',
],
];