Edit File: completed-anime.blade.php
@section("title") Anime Yang Sudah Tamat - Gudang Anime Movie @endsection <div> @if(count($home_sliders) > 0) @php $slides = $home_sliders->map(function($slider) { return [ 'image' => $slider['home_image'], 'title' => $slider['title'], 'description' => $slider['short_description'], 'url' => "/anime/" . $slider['slug'], 'urlText' => "Baca Lebih Lanjut" ]; })->toArray(); @endphp <x-mary-carousel :slides="$slides" class="max-w-4xl mx-auto my-8 hover:opacity-50 duration-200" /> <hr class="h-[2px] bg-red-600 border-red-600 my-2"> <ul class="list-disc ps-4"> @foreach($animes as $anime) <li><a class="hover:underline hover:text-red-500 duration-150" href="{{ route("anime.show", $anime->slug) }}">{{ $anime->title }}</a></li> @endforeach </ul> @else <h1 class="text-2xl text-center">BELUM ADA ANIME YANG SUDAH TAMAT</h1> @endif {{ $animes->links() }} </div>
Back