From 5a2f8972fb605013bd792a2b3997d1339b1cf37f Mon Sep 17 00:00:00 2001 From: Dennis Elsinga Date: Tue, 3 Dec 2024 16:48:16 +0100 Subject: [PATCH] Fix missing div in blade file --- .../views/components/simple-alert.blade.php | 39 ++++++++++--------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/resources/views/components/simple-alert.blade.php b/resources/views/components/simple-alert.blade.php index fee9d8d..f79128d 100644 --- a/resources/views/components/simple-alert.blade.php +++ b/resources/views/components/simple-alert.blade.php @@ -60,27 +60,28 @@ class="h-5 w-5 text-custom-400" 'flex gap-x-3 items-center', $actionsVerticalAlignment === 'start' ? 'self-start' : 'self-center', ])> -
- @if($link) -

- - {{ $linkLabel }} - - -

- @endif +
+ @if($link) +

+ + {{ $linkLabel }} + + +

+ @endif - @if($actions) -
- @foreach ($actions as $action) - @if ($action->isVisible()) - {{ $action }} - @endif - @endforeach -
+ @if($actions) +
+ @foreach ($actions as $action) + @if ($action->isVisible()) + {{ $action }} + @endif + @endforeach +
+ @endif +
@endif
- @endif - + \ No newline at end of file