Fixed empty page stack issue..

This commit is contained in:
Cüneyt Şentürk 2025-11-09 13:28:05 +00:00
parent c7b70dd224
commit 1a0bf56c63
1 changed files with 4 additions and 0 deletions

View File

@ -17,7 +17,9 @@
@if ($checkPermissionCreate)
@can ($button['permission'])
@endif
@if (! empty($button['stack']))
@stack($button['stack'] . '_start')
@endif
<li class="border-b p-2 hover:bg-gray-100">
<x-link href="{{ $button['url']}}" class="flex items-center justify-between text-xs" override="class">
<div class="truncate">
@ -40,7 +42,9 @@
<span class="material-icons text-gray-500 transform rtl:rotate-180">chevron_right</span>
</x-link>
</li>
@if (! empty($button['stack']))
@stack($button['stack'] . '_end')
@endif
@if ($checkPermissionCreate)
@endcan
@endif