{{ $post->title }}
Sıkça Sorulan Sorular
@foreach($__faqItems as $faq){{ $faq['q'] ?? '' }}
{{ $faq['a'] ?? '' }}
@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')
{{ $faq['a'] ?? '' }}