Uat changes #854

Merged
jankstudio merged 24 commits from uat-changes into master 2018-03-13 03:32:04 +00:00
Showing only changes of commit 24d18142c4 - Show all commits

View file

@ -0,0 +1,18 @@
<?php
namespace App\Ramcar;
class TransactionOrigin extends NameValue
{
const FACEBOOK = 'facebook';
const CALL = 'call';
const ONLINE = 'online';
const MOBILE_APP = 'mobile_app';
const COLLECTION = [
'facebook' => 'Facebook',
'call' => 'Call',
'online' => 'Online',
'mobile_app' => 'Mobile App',
];
}