38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class TransactionOrigin extends NameValue
|
|
{
|
|
const CALL = 'call';
|
|
const ONLINE = 'online';
|
|
const FACEBOOK = 'facebook';
|
|
const VIP = 'vip';
|
|
const MOBILE_APP = 'mobile_app';
|
|
const WALK_IN = 'walk_in';
|
|
const LAZADA = 'lazada';
|
|
const THIRD_PARTY = 'third_party';
|
|
const SHOPIFY = 'shopify';
|
|
const YOKOHAMA_OP_FACEBOOK = 'yokohama_op_facebook';
|
|
const YOKOHAMA_TWITTER = 'yokohama_twitter';
|
|
const YOKOHAMA_INSTAGRAM = 'yokohama_instagram';
|
|
const YOKOHAMA_CAROUSELL = 'yokohama_carousell';
|
|
|
|
// TODO: for now, resq also gets the walk-in option
|
|
// resq also gets new YOKOHAMA options
|
|
const COLLECTION = [
|
|
'call' => 'Hotline',
|
|
'online' => 'Online',
|
|
'facebook' => 'Facebook',
|
|
'vip' => 'VIP',
|
|
'mobile_app' => 'Mobile App',
|
|
'walk_in' => 'Walk-in',
|
|
'lazada' => 'Lazada',
|
|
'third_party' => 'Third Party',
|
|
'shopify' => 'Shopify',
|
|
'yokohama_op_facebook' => 'Yokohama OP Facebook',
|
|
'yokohama_twitter' => 'Yokohama Twitter',
|
|
'yokohama_instagram' => 'Yokohama Instagram',
|
|
'yokohama_carousell' => 'Yokohama Carousell',
|
|
];
|
|
}
|