12 lines
942 B
PHP
Executable File
12 lines
942 B
PHP
Executable File
|
|
<?php
|
|
$bgColors = ['bg-orange-100', 'bg-red-100', 'bg-green-100', 'bg-blue-100', 'bg-purple-100'];
|
|
$textColors = ['text-orange-800', 'text-red-800', 'text-green-800', 'text-blue-800', 'text-purple-800'];
|
|
?>
|
|
<?php $__currentLoopData = $bgColors; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $bgColor): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<div class="<?php echo e($bgColor); ?>"></div>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
|
|
<?php $__currentLoopData = $textColors; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $textColor): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<div class="<?php echo e($textColor); ?>"></div>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><?php /**PATH /var/www/html/packages/Webkul/Admin/src/Resources/views/components/example.blade.php ENDPATH**/ ?>
|