From 5d91e0fa0a5bd1a97cc3fdedc725a727e01a58ff Mon Sep 17 00:00:00 2001 From: akemidx Date: Mon, 12 Jan 2026 07:48:53 -0500 Subject: [PATCH] name box alignment/icons for shared or not --- resources/views/reports/custom.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/reports/custom.blade.php b/resources/views/reports/custom.blade.php index 70148964c8..01cf6fee50 100644 --- a/resources/views/reports/custom.blade.php +++ b/resources/views/reports/custom.blade.php @@ -62,7 +62,7 @@ > {{ trans('admin/reports/general.template_name') }} -
+
@if($template->name) @if($template->created_by == auth()->id()) - {!! ($template->is_shared ? ''." ".(trans('admin/reports/general.template_shared_with_others')) : ''." ".(trans('admin/reports/general.template_not_shared')) )!!} + {!! ($template->is_shared ? ''." ".(trans('admin/reports/general.template_shared_with_others')) : ''." ".(trans('admin/reports/general.template_not_shared')) )!!} @else - {!! ($template->is_shared ? ''." ".(trans('admin/reports/general.template_shared')) : ''." ".(trans('admin/reports/general.template_not_shared')) )!!} + {!! ($template->is_shared ? ''." ".(trans('admin/reports/general.template_shared')) : ''." ".(trans('admin/reports/general.template_not_shared')) )!!} @endif @endif