| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 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) |
||
| 18 | } |
||
| 19 | |||
| 20 | public function scopeWithTranslationElement($query) |
||
| 23 | } |
||
| 24 | } |