belongsTo(Category::class); } public function carts(): BelongsToMany { return $this->belongsToMany(Cart::class, 'carts_items', 'item_id', 'cart_id'); } }