Edit File: welcome.blade.php
@section("title", "Gudang Anime Movie - Platform Streaming Anime Dan Film Tercepat Dan Terlengkap") <x-guest-layout> @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 @section("headerseo") <meta name="author" content="{{$page->name}}"> <meta name="description" content="{{$page->description}}"> <meta name="keywords" content="{{ $page->keywords }}"> @endsection <x-mary-carousel :slides="$slides" class="max-w-4xl mx-auto my-8 hover:opacity-50 duration-200" /> <x-home-item title="On Going Anime" :animes="$on_going_animes" link="#" /> @if($last_season->animes()->count() > 0) <x-home-item title="Last Season" :animes="$last_season->animes" link="#" /> @endif @if (count($completed) > 0) <x-home-item title="SUDAH TAMAT" :animes="$completed" link="#" /> @endif @if (count($new_release_films) > 0) <x-home-item title="Film Terbaru" :animes="$new_release_films" link="#" /> @endif </x-guest-layout>
Back