add: full multi-tenancy control

This commit is contained in:
Cauê Faleiros
2026-02-02 15:31:15 -03:00
commit c6ec92802b
1711 changed files with 258106 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php if (! ($breadcrumbs->isEmpty())): ?>
<nav aria-label="">
<ol class="flex flex-wrap">
<?php $__currentLoopData = $breadcrumbs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $breadcrumb): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php if(
$breadcrumb->url
&& ! $loop->last
): ?>
<li class="flex items-center gap-x-1 text-sm font-normal text-brandColor dark:text-brandColor">
<a href="<?php echo e($breadcrumb->url); ?>">
<?php echo e($breadcrumb->title); ?>
</a>
<span class="after:content-['/'] ltr:mr-1 rtl:ml-1"></span>
</li>
<?php else: ?>
<li
class="flex items-center gap-x-1 text-base text-gray-600 after:content-['/'] last:cursor-default after:last:hidden dark:text-gray-300"
aria-current="page"
>
<?php echo e($breadcrumb->title); ?>
</li>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</ol>
</nav>
<?php endif; ?>
<?php /**PATH /var/www/html/packages/Webkul/Admin/src/Resources/views/partials/breadcrumbs.blade.php ENDPATH**/ ?>