/home/techb158/ileadtechnology.com/app
Edit: /home/techb158/ileadtechnology.com/app/Blog.php (827B)
getTranslatableAttributes() as $name) {
$attributes[$name] = $this->getTranslation($name, app()->getLocale());
}
return $attributes;
}
protected $table = 'blogs';
protected $fillable = ['user_id', 'date', 'image', 'heading', 'detail', 'text', 'approved', 'status'];
public function user()
{
return $this->belongsTo('App\User','user_id','id');
}
}