/home/techb158/ileadtechnology.com/app
Edit: /home/techb158/ileadtechnology.com/app/CourseLanguage.php (765B)
getTranslatableAttributes() as $name) {
$attributes[$name] = $this->getTranslation($name, app()->getLocale());
}
return $attributes;
}
protected $table = 'course_languages';
protected $fillable = ['name', 'status'];
public function courses()
{
return $this->hasMany('App\Course','language_id');
}
}