| Current Path : /home/users/unlimited/www/talentorbit.codeskitter.site/app/ |
| Current File : /home/users/unlimited/www/talentorbit.codeskitter.site/app/Language.php |
<?php
namespace App;
use App\Traits\IsDefault;
use App\Traits\Active;
use Illuminate\Database\Eloquent\Model;
class Language extends Model
{
use IsDefault;
use Active;
protected $table = 'languages';
public function scopeSorted($query)
{
return $query->orderBy('lang');
}
public function scopeRTL()
{
return $query->where('is_rtl', '=', 1);
}
}