{{-- resources/views/customer/agency/sections/testimonials.blade.php --}}
@if($section->title || $section->subtitle)
@if($section->subtitle)

{{ $section->subtitle }}

@endif @if($section->title)

{{ $section->title }}

@endif
@endif @php $testimonials = $section->getConfig('testimonials', [ ['name' => 'Ayşe Yılmaz', 'location' => 'İstanbul', 'rating' => 5, 'comment' => 'Harika bir tatil deneyimi yaşadık. Organizasyon mükemmeldi, rehberimiz çok bilgiliydi. Kesinlikle tekrar tercih edeceğiz.', 'avatar' => null], ['name' => 'Mehmet Demir', 'location' => 'Ankara', 'rating' => 5, 'comment' => 'Ailecek gittiğimiz turda herkes çok mutluydu. Fiyat performans açısından harika. Teşekkürler!', 'avatar' => null], ['name' => 'Zeynep Kaya', 'location' => 'İzmir', 'rating' => 5, 'comment' => 'Profesyonel hizmet, güler yüzlü ekip. Balayımızı unutulmaz kıldınız. Herkese tavsiye ediyorum.', 'avatar' => null] ]); @endphp
@foreach($testimonials as $testimonial)
{{ strtoupper(substr($testimonial['name'], 0, 1)) }}

{{ $testimonial['name'] }}

{{ $testimonial['location'] }}

@for($i = 0; $i < $testimonial['rating']; $i++) @endfor

"{{ $testimonial['comment'] }}"

@endforeach