1 | <?php namespace WITR; |
||
5 | class SystemSetting extends Model { |
||
6 | |||
7 | /** |
||
8 | * The attributes that are mass assignable. |
||
9 | * |
||
10 | * @var array |
||
11 | */ |
||
12 | protected $fillable = ['value', 'enabled']; |
||
13 | |||
14 | const AskDestlerTextID = 1; |
||
15 | const DJHoursFormLocationID = 2; |
||
16 | const CDSignoutFormLocationID = 3; |
||
17 | const FrontPageBannerTextID = 4; |
||
18 | |||
19 | public static function scopeAskDestlerText() |
||
23 | |||
24 | public static function scopeDjHoursFormLocation() |
||
28 | |||
29 | public static function scopeCdSignoutFormLocation() |
||
33 | |||
34 | public static function scopeFrontPageBannerText() |
||
38 | } |
||
39 |