{{ __('home.categories') }}

@php $categories = [ 'Uncensored' => 'uncensored', 'Milf' => 'milf', 'Maid' => 'maid', 'School Girl' => 'school-girl', 'Succubus' => 'succubus', 'Tentacle' => 'tentacle', 'Big Boobs' => 'big-boobs', 'BDSM' => 'bdsm', 'Elf' => 'elf', '4k 48fps' => '4k-48fps', ]; @endphp
@foreach ($categories as $name => $slug) @php $cacheKey = 'category_' . $slug; $collection = \cache()->remember( $cacheKey, 900, fn() => \App\Models\Episode::withAllTags([$slug]) ->inRandomOrder() ->limit(3) ->get(), ); $count = $collection->count(); @endphp

{{ $name }}

@if ($count > 0) @endif @if ($count > 1) @endif @if ($count > 2) @endif
@endforeach