16 lines
328 B
PHP
16 lines
328 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class CustomerSource extends NameValue
|
|
{
|
|
const MOBILE = 'mobile_api';
|
|
const ADMIN_PANEL = 'admin_panel';
|
|
const LEGACY = 'legacy';
|
|
|
|
const COLLECTION = [
|
|
'mobile_api' => 'Mobile API',
|
|
'admin_panel' => 'Admin Panel',
|
|
'legacy' => 'Legacy',
|
|
];
|
|
}
|