From acd9505597ff29b7115fb216e845d3183e1ba8c3 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 27 Nov 2013 03:40:01 -0500 Subject: [PATCH] Two-digit decimal for purchase_cost --- app/views/backend/licenses/view.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/backend/licenses/view.blade.php b/app/views/backend/licenses/view.blade.php index 4c0faa82ca..4ee6abf83e 100644 --- a/app/views/backend/licenses/view.blade.php +++ b/app/views/backend/licenses/view.blade.php @@ -163,7 +163,7 @@ View License {{ $license->name }} ::
  • Purchase Date: {{ $license->purchase_date }}
  • @endif @if ($license->purchase_cost) -
  • Purchase Cost: ${{ number_format($license->purchase_cost) }}
  • +
  • Purchase Cost: ${{ number_format($license->purchase_cost,2) }}
  • @endif @if ($license->order_number)
  • Order #: {{ $license->order_number }}