$product one item from ProductService's localized array shape * @return array{name: ?string, price: ?string, image: ?string, href: string} */ public static function fromIndexed(array $product): array { return [ 'name' => $product['name'], 'price' => $product['price'], 'image' => $product['media'][0]['url'] ?? null, 'href' => route('product.show', ['id' => $product['id']]), ]; } }