{{-- resources/views/themes/general/sections/testimonials.blade.php --}} @php $sectionTitle = $section->title ?? 'What Our Clients Say'; // Expects an array of testimonial objects: [['quote' => '', 'author' => '', 'company' => '']] $testimonials = $section->content['testimonials_list'] ?? []; // Fallback for demonstration if $testimonials is empty (remove for production if not needed) // if (empty($testimonials)) { // $testimonials = [ // ['quote' => 'Working with Digital Vocano was a game-changer for our business. Their expertise and dedication are unparalleled.', 'author' => 'Jane Doe', 'company' => 'Innovatech Ltd.', 'author_image_url' => 'https://via.placeholder.com/80x80.png?text=JD'], // ['quote' => 'The team delivered an exceptional product on time and within budget. Highly recommended!', 'author' => 'John Smith', 'company' => 'Solutions Inc.'], // ]; // } @endphp

{{ $sectionTitle }}

@if(!empty($testimonials))
@foreach ($testimonials as $testimonial)
@if(!empty($testimonial['author_image_url'])) {{ $testimonial['author'] }} @endif

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

- {{ $testimonial['author'] }}{{ isset($testimonial['company']) && !empty($testimonial['company']) ? ', ' . $testimonial['company'] : '' }}

@endforeach
@else

Client testimonials will be featured here soon.

@endif
@pushOnce('styles') @endPushOnce @pushOnce('scripts') @endPushOnce