From eaba560877da2bc9c77fbe4d67e64ad2131ba99f Mon Sep 17 00:00:00 2001 From: Brady Wetherington Date: Tue, 1 Feb 2022 14:06:01 -0800 Subject: [PATCH] We had a markdown failure in the upcoming audits table, this fixes it. --- .../views/notifications/markdown/upcoming-audits.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/notifications/markdown/upcoming-audits.blade.php b/resources/views/notifications/markdown/upcoming-audits.blade.php index abd638b38f..e1d95d6112 100644 --- a/resources/views/notifications/markdown/upcoming-audits.blade.php +++ b/resources/views/notifications/markdown/upcoming-audits.blade.php @@ -4,7 +4,7 @@ @component('mail::table') | |{{ trans('mail.name') }}|{{ trans('general.last_audit') }}|{{ trans('general.next_audit_date') }}|{{ trans('mail.Days') }}|{{ trans('mail.supplier') }} | {{ trans('mail.assigned_to') }} -| |:------------- |:-------------|:---------|:---------|:---------|:---------| +|-|:------------- |:-------------|:---------|:---------|:---------|:---------| @foreach ($assets as $asset) @php $next_audit_date = Helper::getFormattedDateObject($asset->next_audit_date, 'date', false);