From 5098d69c05644c75de466d192d3cc0e7fa74136c Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 12 Nov 2020 14:20:54 -0800 Subject: [PATCH] Fixed stupid auto-indent --- .../notifications/markdown/report-expiring-licenses.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/notifications/markdown/report-expiring-licenses.blade.php b/resources/views/notifications/markdown/report-expiring-licenses.blade.php index f403ef4a9..41930a1f5 100644 --- a/resources/views/notifications/markdown/report-expiring-licenses.blade.php +++ b/resources/views/notifications/markdown/report-expiring-licenses.blade.php @@ -10,7 +10,7 @@ $expires = \App\Helpers\Helper::getFormattedDateObject($license->expiration_date $diff = round(abs(strtotime($license->expiration_date->format('Y-m-d')) - strtotime(date('Y-m-d')))/86400); $icon = ($diff <= ($threshold / 2)) ? '🚨' : (($diff <= $threshold) ? '⚠️' : ' '); @endphp - {{ $icon }} {{ $license->name }} {{ $diff }} {{ trans('mail.Days') }} {{ $expires['formatted'] }} +{{ $icon }} {{ $license->name }} {{ $diff }} {{ trans('mail.Days') }} {{ $expires['formatted'] }} @endforeach @endcomponent