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,82 @@
<?php if (isset($component)) { $__componentOriginal3ad46025fb3e01e4c2eb9d1732f00674 = $component; } ?>
<?php if (isset($attributes)) { $__attributesOriginal3ad46025fb3e01e4c2eb9d1732f00674 = $attributes; } ?>
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'admin::components.layouts.anonymous','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
<?php $component->withName('admin::layouts.anonymous'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\AnonymousComponent::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<!-- Page Title -->
<?php $__env->slot('title', null, []); ?>
<?php echo app('translator')->get("admin::app.errors.{$errorCode}.title"); ?>
<?php $__env->endSlot(); ?>
<!-- Error page Information -->
<div class="flex h-[100vh] items-center justify-center bg-white dark:bg-gray-900">
<div class="flex max-w-[745px] items-center gap-5">
<div class="flex w-full flex-col gap-6">
<img
src="<?php echo e(request()->cookie('dark_mode')
? vite()->asset('images/dark-logo.svg')
: vite()->asset('images/logo.svg')); ?>"
class="w-40 ltr:pr-16 rtl:pl-16"
>
<div class="text-[38px] font-bold text-gray-800 dark:text-white">
<?php echo e($errorCode); ?>
</div>
<p class="text-sm text-gray-800 dark:text-white">
<?php echo app('translator')->get("admin::app.errors.{$errorCode}.description"); ?>
</p>
<div class="flex items-center gap-2.5">
<a
href="<?php echo e(url()->previous()); ?>"
class="cursor-pointer text-sm font-semibold text-blue-600 transition-all hover:underline"
>
<?php echo app('translator')->get('admin::app.errors.go-back'); ?>
</a>
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="6" height="7" viewBox="0 0 6 7" fill="none">
<circle cx="3" cy="3.5" r="3" fill="#9CA3AF"/>
</svg>
</span>
<a
href="<?php echo e(route('admin.dashboard.index')); ?>"
class="hover:underlsine text-sm font-semibold text-blue-600 transition-all"
>
<?php echo app('translator')->get('admin::app.errors.dashboard'); ?>
</a>
</div>
<p class="text-sm text-gray-800 dark:text-white">
<?php echo app('translator')->get('admin::app.errors.support', [
'link' => 'mailto:support@example.com',
'email' => 'support@example.com',
'class' => 'font-semibold text-blue-600 transition-all hover:underline',
]); ?>
</p>
</div>
<div class="w-full">
<img src="<?php echo e(vite()->asset('images/error.svg')); ?>" />
</div>
</div>
</div>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginal3ad46025fb3e01e4c2eb9d1732f00674)): ?>
<?php $attributes = $__attributesOriginal3ad46025fb3e01e4c2eb9d1732f00674; ?>
<?php unset($__attributesOriginal3ad46025fb3e01e4c2eb9d1732f00674); ?>
<?php endif; ?>
<?php if (isset($__componentOriginal3ad46025fb3e01e4c2eb9d1732f00674)): ?>
<?php $component = $__componentOriginal3ad46025fb3e01e4c2eb9d1732f00674; ?>
<?php unset($__componentOriginal3ad46025fb3e01e4c2eb9d1732f00674); ?>
<?php endif; ?>
<?php /**PATH /var/www/html/packages/Webkul/Admin/src/Resources/views/errors/index.blade.php ENDPATH**/ ?>