/home/techb158/ileadtechnology.com/app
Edit: /home/techb158/ileadtechnology.com/app/Announcement.php (901B)
getTranslatableAttributes() as $name) {
$attributes[$name] = $this->getTranslation($name, app()->getLocale());
}
return $attributes;
}
protected $table = 'announcements';
protected $fillable = ['user_id', 'course_id', 'announsment', 'status'];
public function user()
{
return $this->belongsTo('App\User','user_id','id');
}
public function courses()
{
return $this->belongsTo('App\Course','course_id','id');
}
}