@extends('layouts.site') @section('content') {{-- Unified Hero & Testimonials Section --}}
{{-- Inline style scoped to this ID --}}
{{-- Hero Header --}}

{!! t('Müşteri Görüşleri') !!}

{!! t('Bizi müşterilerimizden dinleyin. Birlikte yazdığımız başarı hikayeleri.') !!}

{{-- Testimonials Slider --}}
@php $testimonials = $page ? $page->testimonials()->where('is_active', true)->orderBy('sort_order')->get() : collect([]); @endphp @forelse($testimonials as $testimonial)
@for($i=0; $i<$testimonial->rating; $i++) @endfor

“{!! $testimonial->content !!}”

@if($testimonial->avatar)
{{ $testimonial->name }}
@endif

{{ $testimonial->name }}

@if($testimonial->position)

{{ $testimonial->position }}

@endif
@empty

{{ t('Henüz bir müşteri görüşü eklenmemiş.') }}

@endforelse
{{-- /Unified Section --}} @endsection @push('scripts') @endpush