mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 18:02:01 -04:00
23 lines
358 B
PHP
23 lines
358 B
PHP
<?php
|
|
|
|
namespace Modules\Frontend\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Language extends Model
|
|
{
|
|
protected $fillable = [
|
|
'code',
|
|
'name',
|
|
'native',
|
|
'rtl',
|
|
'status',
|
|
'json_exist',
|
|
];
|
|
|
|
public function scopeActive($query)
|
|
{
|
|
return $query->where('status', true);
|
|
}
|
|
}
|