Patrick Henninger
2018-12-28 03:50:42 +01:00
parent 4a2ae61ed4
commit 1190d72b52
5 changed files with 13 additions and 13 deletions

View File

@@ -456,7 +456,7 @@ class CartItem implements Arrayable, Jsonable
}
if (is_null($thousandSeperator)){
$thousandSeperator = is_null(config('cart.format.thousand_seperator')) ? ',' : config('cart.format.thousand_seperator');
$thousandSeperator = is_null(config('cart.format.thousand_separator')) ? ',' : config('cart.format.thousand_separator');
}
return number_format($value, $decimals, $decimalPoint, $thousandSeperator);