'int', 'category_id' => 'int', ]; protected $fillable = [ 'promotion_link_id', 'category_id', ]; public function category() { return $this->belongsTo(Category::class); } public function promotion_link() { return $this->belongsTo(PromotionLink::class); } }