@extends('user.layouts.app') @section('content') @php $company_name = config("app.name"); @endphp

Testimonial

@if(isset($testimonial_data) && count($testimonial_data) != 0)
@foreach ($testimonial_data as $testimonial) @php $imgurl = $testimonial->full_image_path; @endphp

{{$testimonial->description}}

{{ Str::limit($testimonial->title, 45, '...') }}

{{$testimonial->client_name}} - {{get_country_name($testimonial->client_country)}}

@endforeach
@else

Sorry! No data found.

@endif
@endsection