@if($testimonials->isEmpty()) @for($i = 0; $i < 2; $i++)
avatar_user

Any man who reads too much and uses his own brain too little falls into lazy habits of thinking.

Albert Einstein
@endfor @else @foreach($testimonials->chunk(2) as $chunk)
@foreach($chunk as $testimonial)
testimonial_{{ $testimonial->customer->name }}

{{ $testimonial->quote }}

{{ $testimonial->customer->name }} {{ $testimonial->customer->company ?: '' }}
@endforeach
@endforeach @endif