Display prices in PLN
All checks were successful
/ deploy-job (push) Successful in 1s

This commit is contained in:
2026-02-27 11:37:23 +01:00
parent 5088f6173f
commit e02fa4fc67
2 changed files with 23 additions and 7 deletions

View File

@@ -104,6 +104,11 @@ class Product extends Model
);
}
public function conversionRate(): ?float
{
return $this->conversionRate;
}
public function isDiscontinued(): bool
{
return $this->lastSeen < now()->format('Y-m-d');