@extends('frontend.layouts.app') @section('title', ($q ? '"'.$q.'" — Arama' : 'Tüm Animeler') . ' — Animexe') @section('meta_description', $q ? '"' . $q . '" için anime arama sonuçları — Animexe\'de Türkçe anime izleyin.' : 'Animexe\'de tüm anime dizi ve filmlerini keşfedin. Tür, durum ve yıla göre filtreleyin.') @section('robots', ($q || request()->has('genre') || request()->has('type') || request()->has('year') || $results->currentPage() > 1) ? 'noindex, follow' : 'index, follow') @push('styles') @endpush @section('content')

{{ $q ? '"'.$q.'" için sonuçlar' : 'Tüm Animeler' }}

{{-- Satır 1: Arama kutusu + Ara butonu --}}
{{-- Satır 2: Filtreler + Sıralama --}}
Sırala:
@php $sortLabels = [ 'popular' => '🔥 En Popüler', 'rating' => '⭐ En Yüksek Puan', 'newest' => '🆕 En Yeni', 'oldest' => '📅 En Eski', 'az' => '🔤 A → Z', 'za' => '🔤 Z → A', 'personalized'=> '✨ Sana Özel', ]; @endphp

Toplam {{ $results->total() }} anime bulundu · {{ $sortLabels[$sort] ?? '' }}

@if($results->count())
@foreach($results as $anime)
@if($anime->coverUrl) {{ $anime->title }} @else
@endif @if($anime->type==='movie')Film@endif @if($anime->rating){{ number_format($anime->rating,1) }}@endif
{{ $anime->title }}
{{ $anime->release_year }}@if($anime->episode_count) · {{ $anime->episode_count }}bö@endif
@endforeach
@if($results->hasPages())
{{ $results->links('frontend.pagination') }}
@endif @else

Sonuç bulunamadı. Farklı bir arama terimi deneyin.

Tümünü Göster
@endif
@endsection