@extends('front.layouts.app') @section('title', 'Testimonials') @section('description', '') @section('keywords', '') @section('content')
First slide
@csrf
user() ? 'readonly' : '' !!}>
user() ? 'readonly' : '' !!}>
@foreach($testimonials as $testimonial)

{{$testimonial->name}}

{{\Carbon\Carbon::parse($testimonial->created_at)->monthName}} {{\Carbon\Carbon::parse($testimonial->created_at)->day}}, {{\Carbon\Carbon::parse($testimonial->created_at)->year}}

{!! $testimonial->review !!}

@endforeach
@endsection