@extends('frontend.layouts.products-app') @section('title') Testimonials @endsection @section('seo') @endsection @section('content')
{{-- --}}

TESTIMONIALS

Reviews that show the quality of our products and services, and real-life stories that prove how our products stand up to real-life disaster

{{--

TESTIMONIALS

Testimonials that prove our products stand up to real-life disaster

--}}
@php $x = 0; @endphp @foreach ($testimonials as $testimonial) @if ($x % 2 == 0)
{{--

"{{ $testimonial->title }}"

--}}

{!! $testimonial->description !!}

{{ $testimonial->name }}

{{ date('F Y', strtotime($testimonial->date)) }}

@else
{{--

"{{ $testimonial->title }}"

--}}

{!! $testimonial->description !!}

{{ $testimonial->name }}

{{ date('F Y', strtotime($testimonial->date)) }}

@endif @php $x++; @endphp @endforeach



{{-- --}} @endsection