@extends('layouts.app') @section('content')

{{ __('home.testimonials.title') }}

{{ __('home.testimonials.subtitle') }}

@forelse($testimonials as $testimonial)
@if(!empty($testimonial->image)) {{ $testimonial->name }} @endif

{{ $testimonial->name }}

@if(!empty($testimonial->position))

{{ $testimonial->position }}

@endif @if(!empty($testimonial->quote))

{{ $testimonial->quote }}

@endif
@empty

No testimonials available at the moment.

@endforelse
@endsection