Add Referral to source of awareness dropdown. #661

This commit is contained in:
Korina Cordero 2022-04-29 05:03:17 +00:00
parent ebaef97333
commit e44d8d3b06

View file

@ -11,6 +11,7 @@ class SourceOfAwareness extends NameValue
const FLYERS = 'flyers';
const WORD_OF_MOUTH = 'word_of_mouth';
const OTHER = 'other';
const REFERRAL = 'referral';
const COLLECTION = [
'facebook' => 'Facebook',
@ -19,6 +20,7 @@ class SourceOfAwareness extends NameValue
'tarp_ads' => 'Tarp Ads',
'flyers' => 'Flyers',
'word_of_mouth' => 'Word of Mouth',
'referral' => 'Referral',
'other' => 'Other',
];
}