From f6971b8ab275ccc6b2bca422d8f902290b66a7bd Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 16 Aug 2018 14:30:06 -0700 Subject: [PATCH] =?UTF-8?q?Fixed=20#6082=20-=20don=E2=80=99t=20show=20expe?= =?UTF-8?q?cted=20checkin=20in=20email=20if=20none=20given?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/notifications/markdown/checkout-asset.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/notifications/markdown/checkout-asset.blade.php b/resources/views/notifications/markdown/checkout-asset.blade.php index e4d3bdc4cf..ba89390073 100644 --- a/resources/views/notifications/markdown/checkout-asset.blade.php +++ b/resources/views/notifications/markdown/checkout-asset.blade.php @@ -29,7 +29,7 @@ @if (isset($last_checkout)) | **{{ trans('mail.checkout_date') }}** | {{ $last_checkout }} | @endif -@if (isset($expected_checkin)) +@if ((isset($expected_checkin)) && ($expected_checkin!='')) | **{{ trans('mail.expecting_checkin_date') }}** | {{ $expected_checkin }} | @endif @foreach($fields as $field)