Files
hstream/resources/views/home/partials/random.blade.php
2025-09-18 15:31:27 +02:00

10 lines
295 B
PHP

<p class="leading-normal font-bold text-lg text-neutral-800 dark:text-white">
Random
</p>
@php $random = \App\Models\Episode::inRandomOrder()->limit(8)->get(); @endphp
<div class="mb-6">
@include('home.partials.tab.template', ['episodes' => $random, 'showThumbnails' => false])
</div>