1 | <?php namespace Distilleries\Expendable\Models; |
||
3 | class Language extends BaseModel { |
||
4 | |||
5 | use \Distilleries\Expendable\Models\StatusTrait; |
||
6 | |||
7 | protected $fillable = [ |
||
8 | 'libelle', |
||
9 | 'iso', |
||
10 | 'not_visible', |
||
11 | 'is_default', |
||
12 | 'status', |
||
13 | ]; |
||
14 | |||
15 | public function scopeWithoutCurrentLanguage($query) |
||
16 | { |
||
17 | return $query->where($this->getTable().'.iso','<>',app()->getLocale()); |
||
18 | } |
||
19 | |||
20 | public function scopeWithTranslationElement($query) |
||
24 | } |