xake
xake

Reputation: 47

Invalid integer in property "price" (in "offers")

I've created structured data for Car (car rental website) and Google Search Console is throwing this error:

Invalid integer in property "price" (in "offers")

for this piece of code

            'offers' => [
            '@type' => 'Offer',
            'price' => number_format($car->daily_rate, 2, '.', ''),
            'priceCurrency' => 'EUR',
            'availability' => 'https://schema.org/InStock',
        ],

What should I be doing differently?

Regards.

Upvotes: 1

Views: 45

Answers (0)

Related Questions