/home/techb158/ileadtechnology.com/app
Edit: /home/techb158/ileadtechnology.com/app/CourseInclude.php (799B)
getTranslatableAttributes() as $name) {
$attributes[$name] = $this->getTranslation($name, app()->getLocale());
}
return $attributes;
}
protected $table = 'course_includes';
protected $fillable = [
'course_id', 'detail', 'status','icon'
];
public function courses()
{
return $this->belongsTo('App\Course','course_id','id');
}
}