@if ($title = $shortcode->title)

{!! BaseHelper::clean($title) !!}

@endif @if ($description = $shortcode->description)

{!! BaseHelper::clean($description) !!}

@endif
@foreach ($testimonials as $testimonial)
@if ($image = $testimonial->image)
{{ RvMedia::image($image, $testimonial->name) }}
@endif
@if ($company = $testimonial->company)

{!! BaseHelper::clean($company) !!}

@endif
@php $ratingStar = round((int) $testimonial->getMetaData('rating_star', true)) @endphp @foreach(range(1, 5) as $i) $i > $ratingStar])> @endforeach
@if ($content = $testimonial->content)

{!! BaseHelper::clean($content) !!}

@endif
@endforeach