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 class="container mx-auto">
<ol class="p-4 rounded flex flex-wrap bg-gray-300 text-sm text-gray-800">
<?php $__currentLoopData = $breadcrumbs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $breadcrumb): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php if($breadcrumb->url && !$loop->last): ?>
<li>
<a href="<?php echo e($breadcrumb->url); ?>" class="text-blue-600 hover:text-blue-900 hover:underline focus:text-blue-900 focus:underline">
<?php echo e($breadcrumb->title); ?>
</a>
</li>
<?php else: ?>
<li>
<?php echo e($breadcrumb->title); ?>
</li>
<?php endif; ?>
<?php if (! ($loop->last)): ?>
<li class="text-gray-500 px-2">
/
</li>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</ol>
</nav>
<?php endif; ?>
<?php /**PATH /var/www/html/vendor/diglactic/laravel-breadcrumbs/resources/views/tailwind.blade.php ENDPATH**/ ?>