belongsTo(ProductCategory::class, 'product_category_id'); } public function dealers(){ return $this->belongsToMany(Dealer::class, 'stock') ->withPivot('quantity') ->withTimestamps(); } }