{!! t('Mutlu Müşteriler') !!}

{!! t('Bizi müşterilerimizden dinleyin.') !!}

@php $homePageTestimonials = $page ? $page->testimonials()->where('is_active', true)->orderBy('sort_order')->get() : collect([]); // If home page has no testimonials, maybe fetch from 'musteri-gorusleri' page as fallback if ($homePageTestimonials->isEmpty()) { $tPage = \App\Models\Page::where('slug', 'musteri-gorusleri')->first(); if ($tPage) { $homePageTestimonials = $tPage->testimonials()->where('is_active', true)->orderBy('sort_order')->take(5)->get(); } } @endphp @forelse($homePageTestimonials as $testimonial)

"{!! $testimonial->content !!}"

{{ $testimonial->name }}

{{ $testimonial->position }}

@empty

{{ t('Müşteri görüşleri yakında burada olacak.') }}

@endforelse