@extends('layouts.public') @section('title',__('messages.nav_highlights')) @section('content') @include('components.page-slider',['sliders'=>$sliders,'title'=>__('messages.nav_highlights'),'subtitle'=>__('messages.highlights_slider_sub')]) @if($stats->count())
@foreach($stats as $stat)
{{ $stat->value }}
{{ $stat->label }}
@if($stat->description)
{{ $stat->description }}
@endif
@endforeach
@endif @if($testimonials->count())
{{ __('messages.testimonials') }}

{{ __('messages.highlights_testimonials') }}

@foreach($testimonials as $t)
@for($i=0;$i<$t->rating;$i++)@endfor

{{ $t->quote }}

{{ strtoupper(substr($t->getTranslation('author_name',app()->getLocale()),0,1)) }}
{{ $t->author_name }}
{{ $t->author_position }} @if($t->author_company)— {{ $t->author_company }}@endif
@endforeach
@endif @endsection