@extends('layouts.app') @section('title', 'Depoimentos - Suplementos Store') @section('content')

Depoimentos

Veja o que nossos clientes dizem sobre nós

@if($testimonials->count() > 0)
@foreach($testimonials as $testimonial)
@for($i = 1; $i <= 5; $i++) @endfor

"{{ $testimonial->comment }}"

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

{{ $testimonial->name }}

Cliente verificado

@endforeach
@if($testimonials->hasPages())
{{ $testimonials->links() }}
@endif @else

Nenhum depoimento disponível

Seja o primeiro a deixar um depoimento!

@endif
@endsection