Fix constants in jostatus
This commit is contained in:
parent
85bb0703cf
commit
73ccc1ca6b
1 changed files with 5 additions and 5 deletions
|
|
@ -4,11 +4,11 @@ namespace App\Ramcar;
|
||||||
|
|
||||||
class JOStatus
|
class JOStatus
|
||||||
{
|
{
|
||||||
const PENDING => 'pending';
|
const PENDING = 'pending';
|
||||||
const ASSIGNED => 'assigned';
|
const ASSIGNED = 'assigned';
|
||||||
const IN_PROGRESS => 'in_progress';
|
const IN_PROGRESS = 'in_progress';
|
||||||
const CANCELLED => 'cancelled';
|
const CANCELLED = 'cancelled';
|
||||||
const FULFILLED => 'fulfilled';
|
const FULFILLED = 'fulfilled';
|
||||||
|
|
||||||
const COLLECTION = [
|
const COLLECTION = [
|
||||||
'pending' => 'Pending',
|
'pending' => 'Pending',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue