@extends('frontend.layouts.app') @php $__canon = rtrim(\App\Models\Setting::get('seo_canonical_domain', config('app.url')), '/') . route('blog.show', $post->slug, false); $__ogImg = $post->coverUrl; $__pubDate = $post->published_at?->toIso8601String(); $__modDate = $post->updated_at?->toIso8601String(); $__faqItems = $post->faq ?? []; @endphp @section('title', ($post->meta_title ?: $post->title) . ' — Animexe Blog') @section('meta_description', $post->meta_description ?: $post->excerpt) @section('meta_keywords', $post->meta_keywords) @section('og_type', 'article') @section('og_title', $post->title) @section('og_description', $post->excerpt) @if($__ogImg)@section('og_image', $__ogImg)@endif @section('canonical', $__canon) @section('robots', 'index, follow') @section('schema') @if(count($__faqItems) > 0) @endif @endsection @push('styles') @endpush @section('content')
@if($post->coverUrl) {{ $post->title }} @endif @if($post->ai_generated)
AI Destekli İçerik
@endif

{{ $post->title }}

@if($post->published_at) @endif {{ $post->reading_time }} dk okuma @if($post->anime) {{ $post->anime->title }} @endif @if($post->focus_keyword) {{ $post->focus_keyword }} @endif
{!! $post->content !!}
{{-- FAQ Bölümü --}} @if(count($__faqItems) > 0)

Sıkça Sorulan Sorular

@foreach($__faqItems as $faq)

{{ $faq['q'] ?? '' }}

{{ $faq['a'] ?? '' }}

@endforeach
@endif {{-- İlgili Anime Linkleri --}} @if($linkedAnimes->count()) @endif {{-- CTA --}} @if($post->anime)

{{ $post->anime->title }} İzle

Animexe'de Türkçe altyazılı veya dublajlı ücretsiz izle.

Hemen İzle
@endif
{{-- Sidebar --}}
@endsection