drehimself / laravel-ecommerce-example

Code for YouTube series on building a Laravel E-Commerce application.
https://www.youtube.com/watch?v=o5PWIuDTgxg&list=PLEhEHUEU3x5oPTli631ZX9cxl6cU_sDaR
1.02k stars 585 forks source link

A non well formed numeric value encountered #105

Open Mrrkha opened 3 years ago

Mrrkha commented 3 years ago

Dear, Could you help me ? I got error "A non well formed numeric value encountered".

calebeso commented 2 years ago

Make sure to cast your variables before perform any math operations, this error means that you have a format problem.

function presentPrice($price)
{
    $price = is_string($price) ? (float)$price : $price; 
    return 'R$' . number_format($price, 2, ",", ".");
}