18 lines
381 B
PHP
18 lines
381 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class InsuranceApplicationStatus extends NameValue
|
|
{
|
|
const CREATED = 'created';
|
|
const PAID = 'paid';
|
|
const COMPLETED = 'completed';
|
|
const CANCELLED = 'cancelled';
|
|
|
|
const COLLECTION = [
|
|
'created' => 'Created',
|
|
'paid' => 'Paid',
|
|
'completed' => 'Completed',
|
|
'cancelled' => 'Cancelled',
|
|
];
|
|
}
|