Fixed empty page stack issue..
This commit is contained in:
parent
c7b70dd224
commit
1a0bf56c63
|
|
@ -17,7 +17,9 @@
|
||||||
@if ($checkPermissionCreate)
|
@if ($checkPermissionCreate)
|
||||||
@can ($button['permission'])
|
@can ($button['permission'])
|
||||||
@endif
|
@endif
|
||||||
|
@if (! empty($button['stack']))
|
||||||
@stack($button['stack'] . '_start')
|
@stack($button['stack'] . '_start')
|
||||||
|
@endif
|
||||||
<li class="border-b p-2 hover:bg-gray-100">
|
<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">
|
<x-link href="{{ $button['url']}}" class="flex items-center justify-between text-xs" override="class">
|
||||||
<div class="truncate">
|
<div class="truncate">
|
||||||
|
|
@ -40,7 +42,9 @@
|
||||||
<span class="material-icons text-gray-500 transform rtl:rotate-180">chevron_right</span>
|
<span class="material-icons text-gray-500 transform rtl:rotate-180">chevron_right</span>
|
||||||
</x-link>
|
</x-link>
|
||||||
</li>
|
</li>
|
||||||
|
@if (! empty($button['stack']))
|
||||||
@stack($button['stack'] . '_end')
|
@stack($button['stack'] . '_end')
|
||||||
|
@endif
|
||||||
@if ($checkPermissionCreate)
|
@if ($checkPermissionCreate)
|
||||||
@endcan
|
@endcan
|
||||||
@endif
|
@endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue