/home/techb158/ileadtechnology.com/app
Edit: /home/techb158/ileadtechnology.com/app/ReviewRating.php (974B)
getTranslatableAttributes() as $name) {
$attributes[$name] = $this->getTranslation($name, app()->getLocale());
}
return $attributes;
}
protected $table = 'review_ratings';
protected $fillable = [
'course_id', 'user_id', 'learn', 'price', 'value', 'review', 'status', 'approved',
'featured', ];
public function user()
{
return $this->belongsTo('App\User','user_id','id');
}
public function courses()
{
return $this->belongsTo('App\Course','course_id','id');
}
}