25 lines
565 B
PHP
25 lines
565 B
PHP
<?php
|
|
|
|
return [
|
|
'days' => [
|
|
'mon' => 'Monday',
|
|
'tues' => 'Tuesday',
|
|
'wed' => 'Wednesday',
|
|
'thurs' => 'Thursday',
|
|
'fri' => 'Friday',
|
|
'sat' => 'Saturday',
|
|
'sun' => 'Sunday',
|
|
],
|
|
|
|
'pireps' => [
|
|
'state' => [
|
|
'accepted' => 'Accepted',
|
|
'pending' => 'Pending',
|
|
'rejected' => 'Rejected',
|
|
'in_progress' => 'In Progress',
|
|
'cancelled' => 'Cancelled',
|
|
'deleted' => 'Deleted',
|
|
],
|
|
],
|
|
];
|