From e4d45f391c662d33e0b4fdc174d52aa70098af97 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Fri, 18 Oct 2024 19:51:42 -0500 Subject: [PATCH] truncate overflowing text --- resources/views/dashboard.blade.php | 10 +++++----- resources/views/portfolio/show.blade.php | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/resources/views/dashboard.blade.php b/resources/views/dashboard.blade.php index 4172538..5814380 100644 --- a/resources/views/dashboard.blade.php +++ b/resources/views/dashboard.blade.php @@ -6,27 +6,27 @@
-
{{ __('Market Gain/Loss') }}
+
{{ __('Market Gain/Loss') }}
{{ Number::currency($metrics->total_gain_dollars) }}
-
{{ __('Total Cost Basis') }}
+
{{ __('Total Cost Basis') }}
{{ Number::currency($metrics->total_cost_basis) }}
-
{{ __('Total Market Value') }}
+
{{ __('Total Market Value') }}
{{ Number::currency($metrics->total_market_value) }}
-
{{ __('Realized Gain/Loss') }}
+
{{ __('Realized Gain/Loss') }}
{{ Number::currency($metrics->realized_gain_dollars) }}
-
{{ __('Dividends Earned') }}
+
{{ __('Dividends Earned') }}
{{ Number::currency($metrics->total_dividends_earned) }}
diff --git a/resources/views/portfolio/show.blade.php b/resources/views/portfolio/show.blade.php index 20cfd39..db77818 100644 --- a/resources/views/portfolio/show.blade.php +++ b/resources/views/portfolio/show.blade.php @@ -55,27 +55,27 @@ -
{{ __('Market Gain/Loss') }}
+
{{ __('Market Gain/Loss') }}
{{ Number::currency($metrics->total_gain_dollars) }}
-
{{ __('Total Cost Basis') }}
+
{{ __('Total Cost Basis') }}
{{ Number::currency($metrics->total_cost_basis) }}
-
{{ __('Total Market Value') }}
+
{{ __('Total Market Value') }}
{{ Number::currency($metrics->total_market_value) }}
-
{{ __('Realized Gain/Loss') }}
+
{{ __('Realized Gain/Loss') }}
{{ Number::currency($metrics->realized_gain_dollars) }}
-
{{ __('Dividends Earned') }}
+
{{ __('Dividends Earned') }}
{{ Number::currency($metrics->total_dividends_earned) }}