@if($testimonials->count() > 0)

What our customers say

@php $delay = 0; @endphp @foreach($testimonials as $item) @php $profile_picture = asset('default_assets/user/default.jpg'); if($item->profile_picture != null){ $profile_picture = asset('ProfilePicture/' . $item->profile_picture); } @endphp

{{ \Illuminate\Support\Str::words($item->review, 30, '...') }}

{{$item->first_name . ' ' . $item->last_name}}

{{ \Carbon\Carbon::parse($item->created_at)->format('F j, Y') }}

{{--
12 Comment
--}}
@php $delay += 200; @endphp @endforeach
@endif
@csrf