Testimonials Management Manage All Testimonials →
@php $testimonials = [ [ 'text' => isset($homeContents['testimonial_1_text']) ? $homeContents['testimonial_1_text']->value : 'No review text', 'name' => isset($homeContents['testimonial_1_name']) ? $homeContents['testimonial_1_name']->value : 'Customer', 'location' => isset($homeContents['testimonial_1_location']) ? $homeContents['testimonial_1_location']->value : '', 'rating' => isset($homeContents['testimonial_1_rating']) ? $homeContents['testimonial_1_rating']->value : '⭐⭐⭐⭐⭐', ], [ 'text' => isset($homeContents['testimonial_2_text']) ? $homeContents['testimonial_2_text']->value : 'No review text', 'name' => isset($homeContents['testimonial_2_name']) ? $homeContents['testimonial_2_name']->value : 'Customer', 'location' => isset($homeContents['testimonial_2_location']) ? $homeContents['testimonial_2_location']->value : '', 'rating' => isset($homeContents['testimonial_2_rating']) ? $homeContents['testimonial_2_rating']->value : '⭐⭐⭐⭐⭐', ], [ 'text' => isset($homeContents['testimonial_3_text']) ? $homeContents['testimonial_3_text']->value : 'No review text', 'name' => isset($homeContents['testimonial_3_name']) ? $homeContents['testimonial_3_name']->value : 'Customer', 'location' => isset($homeContents['testimonial_3_location']) ? $homeContents['testimonial_3_location']->value : '', 'rating' => isset($homeContents['testimonial_3_rating']) ? $homeContents['testimonial_3_rating']->value : '⭐⭐⭐⭐⭐', ], ]; @endphp @foreach($testimonials as $index => $testimonial)
Review {{ $index + 1 }}
{{ $testimonial['rating'] }}

"{{ Str::limit($testimonial['text'], 100) }}"

{{ $testimonial['name'] }} @if($testimonial['location']) - {{ $testimonial['location'] }} @endif
Edit
@endforeach

💡 Tip: Edit testimonials from Home Contents to update the Welcome Page reviews.