belongsTo(ProductCategory::class, 'product_category_id'); } public function branch(): BelongsTo { return $this->belongsTo(Branch::class); } public function adjustments(): HasMany { return $this->hasMany(StockAdjustment::class); } public function saleItems(): HasMany { return $this->hasMany(ProductSaleItem::class); } }