From 2c4d0f03d688c07e51db2c2bf2ff941229692af7 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sat, 12 Oct 2019 22:51:31 -0500 Subject: [PATCH] decimal places on dashboard --- resources/views/dashboard/dashboard.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/dashboard/dashboard.blade.php b/resources/views/dashboard/dashboard.blade.php index b1bf58a..a27bc61 100644 --- a/resources/views/dashboard/dashboard.blade.php +++ b/resources/views/dashboard/dashboard.blade.php @@ -30,10 +30,10 @@ {{ $contract['pickup'] }} {{ $contract['destination'] }} {{ $contract['type'] }} - {{ number_format($contract['volume'], 2, ",", ".") }} + {{ number_format($contract['volume'], 2, ".", ",") }} {{ $contract['expired'] }} - {{ number_format($contract['collateral'], 2, ",", ".") }} - {{ number_format($contract['reward'], 2, ",", ".") }} + {{ number_format($contract['collateral'], 2, ".", ",") }} + {{ number_format($contract['reward'], 2, ".", ",") }} {{ $contract['availability'] }} @endforeach