Edit File: 81acea7810add8f5fbe4f4227845955d.php
<div class="flex flex-col gap-4 px-2"> <div class="bg-gray-700 border-l-2 border-l-red-600 px-2 md:px-6 py-2"> <div class="flex w-full justify-between"> <h2 class="lg:text-2xl md:text-lg">Daftar <?php echo e($title); ?></h2> </div> </div> <div class="flex flex-wrap gap-4"> <!--[if BLOCK]><![endif]--><?php $__currentLoopData = $items; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <a href="<?php echo e(route($routeName . ".show", $item->slug)); ?>" class="bg-gray-700 px-8 py-2 rounded-lg border-white border-2"> <?php echo e($item->name); ?> <?php echo e($item->animes ? "( " . $item->animes->count() ." )" : ""); ?> </a> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><!--[if ENDBLOCK]><![endif]--> </div> <!--[if BLOCK]><![endif]--><?php if(count($items) == 0): ?> <h2 class="text-lg lg:text-3xl font-bold">Data Tidak Ditemukan</h2> <?php endif; ?><!--[if ENDBLOCK]><![endif]--> </div> </div> <?php /**PATH /home/okaminime0881/anime/resources/views/components/category-list.blade.php ENDPATH**/ ?>
Back