27 lines
692 B
PHP
27 lines
692 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class SourceOfAwareness extends NameValue
|
|
{
|
|
const FACEBOOK = 'facebook';
|
|
const INSTAGRAM = 'instagram';
|
|
const RADIO_ADS = 'radio_ads';
|
|
const TARP_ADS = 'tarp_ads';
|
|
const FLYERS = 'flyers';
|
|
const WORD_OF_MOUTH = 'word_of_mouth';
|
|
const OTHER = 'other';
|
|
const REFERRAL = 'referral';
|
|
|
|
const COLLECTION = [
|
|
'facebook' => 'Facebook',
|
|
'instagram' => 'Instagram',
|
|
'radio_ads' => 'Radio Ads',
|
|
'tarp_ads' => 'Tarp Ads',
|
|
'flyers' => 'Flyers',
|
|
'word_of_mouth' => 'Word of Mouth',
|
|
'referral' => 'Referral',
|
|
'other' => 'Other',
|
|
];
|
|
}
|
|
|