24 lines
899 B
PHP
24 lines
899 B
PHP
|
|
{{-- testimonial slider --}}
|
|
@if(count($testimonial))
|
|
<div class="testi_slider_sec">
|
|
<div class="container">
|
|
<div class="bg-brown-head mb-4">
|
|
<h3>Testmonials</h3>
|
|
</div>
|
|
<div id="testimonial_sliders">
|
|
@foreach ($testimonial as $singleTestimonial)
|
|
<div class="inn_testi">
|
|
<div class="inn_to_testi">
|
|
{{-- <img src="http://localhost/freeu/my-freeu/public/assets/media/FrontendImages/menu-logo.png"> --}}
|
|
<h2>{{$singleTestimonial->description}}</h2>
|
|
<p>{{$singleTestimonial->client_name}} <br> <span>{{$singleTestimonial->client_designation_company_name}}</span></p>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
{{-- testimonial slider --}} |