Files
freeu-project/resources/views/Frontend/Pages/testimonial.blade.php
meghamalore efd5649f86 bugs fixes
2024-06-10 16:34:37 +05:30

21 lines
799 B
PHP

{{-- testimonial slider --}}
@if(count($testimonial))
<div class="testi_slider_sec">
<div class="container">
<div class="h2">Testmonials</div>
<div id="testimonial_sliders">
@foreach ($testimonial as $singleTestimonial)
<div class="inn_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>
@endforeach
</div>
</div>
</div>
@endif
{{-- testimonial slider --}}