public function toLivewire(): array { return [ 'price' => Product::get('price'), ]; } public static function fromLivewire($value): static { $price = $value['price']; return new static($price); }