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,46 @@
<v-shimmer-image <?php echo e($attributes); ?>>
<div <?php echo e($attributes->merge(['class' => 'shimmer bg-neutral-100'])); ?>></div>
</v-shimmer-image>
<?php if (! $__env->hasRenderedOnce('64e34f58-e15e-4d49-a238-e25b825c841d')): $__env->markAsRenderedOnce('64e34f58-e15e-4d49-a238-e25b825c841d');
$__env->startPush('scripts'); ?>
<script
type="text/x-template"
id="v-shimmer-image-template"
>
<div
class="shimmer"
v-bind="$attrs"
v-show="isLoading"
>
</div>
<img
v-bind="$attrs"
:src="src"
@load="onLoad"
v-show="! isLoading"
>
</script>
<script type="module">
app.component('v-shimmer-image', {
template: '#v-shimmer-image-template',
props: ['src'],
data() {
return {
isLoading: true,
};
},
methods: {
onLoad() {
this.isLoading = false;
},
},
});
</script>
<?php $__env->stopPush(); endif; ?>
<?php /**PATH /var/www/html/packages/Webkul/Admin/src/Resources/views/components/shimmer/image/index.blade.php ENDPATH**/ ?>