@if ($testimonials->isEmpty() && $sort === 'featured')

{{ __('No stories published yet. Check back soon.') }}

@else
{{ __('Sort by:') }} @foreach ($sortOptions as $key => $label) @endforeach
@foreach ($testimonials as $testimonial)

{{ $testimonial->translate('name') }}

{{ $testimonial->translate('role') }}

{{ $testimonial->translate('quote') }}

@endforeach
@if ($testimonials->hasPages()) @endif @endif