PATH:
home
/
lab2454c
/
aficb.com
/
resources
/
views
/
frontend
/
homeSections
<div class="testimonials__wrapp"> <div class="container"> <h2>{{ isset($homeTitle->testimonial_title) ? $homeTitle->testimonial_title : 'Demo Title' }}</h2> <p>{{ isset($homeTitle->testimonial_content) ? $homeTitle->testimonial_content : 'Demo Content' }}</p> <div class="tesimoinials__inner"> <div class="theme_carousel owl-theme owl-carousel" data-options='{"loop": false, "margin": 0, "autoheight":true, "lazyload":true, "nav": false, "dots":true, "autoplay": true, "autoplayTimeout": 6000, "smartSpeed": 300, "responsive":{ "0" :{ "items": "1" }, "450" :{ "items" : "1" } , "767" :{ "items" : "2" } , "1000":{ "items" : "3" }}}'> @forelse($testimonials as $testimonial) <div class="slide-item"> <div class="testminials__card"> <div class="item__content"> <p>{{ $testimonial->testimonial }}</p> <div class="title"> <h3>{{ $testimonial->given_by }}</h3> <h4>{{ $testimonial->position }}</h4> </div> </div> </div> </div> @empty <h4>No Testimonials Listed</h4> @endforelse </div> </div> </div> </div>
[+]
..
[-] testimonials.blade.php
[edit]
[-] products.blade.php
[edit]
[-] explore.blade.php
[edit]
[-] services.blade.php
[edit]
[-] banner.blade.php
[edit]