This commit is contained in:
2025-03-26 14:17:06 +05:00
parent 78a91604b1
commit fdf6adf501
2 changed files with 9 additions and 3 deletions

View File

@@ -125,7 +125,12 @@ class CardOrder extends Model
*/
public function priceAmount(): float
{
return $this->cardState->price ?? floatval(32);
return $this->cardState->price ?? 32;
}
public function really()
{
return $this->id;
}
/**