Edit File: category-list.blade.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 {{$title}}</h2> </div> </div> <div class="flex flex-wrap gap-4"> @foreach ($items as $item) <a href="{{route($routeName . ".show", $item->slug)}}" class="bg-gray-700 px-8 py-2 rounded-lg border-white border-2"> {{ $item->name }} {{ $item->animes ? "( " . $item->animes->count() ." )" : "" }} </a> @endforeach </div> @if (count($items) == 0) <h2 class="text-lg lg:text-3xl font-bold">Data Tidak Ditemukan</h2> @endif </div> </div>
Back