public function articles()
{
return $this->morphedByMany('App\Article', 'categoryable');
}
Schema::create('categoryables', function (Blueprint $table) {
$table->integer('articlescategory_id');
$table->integer('categoryable_id');
$table->string('categoryable_type');