Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Dynamic Carousel in Laravel not working displays only one image

@foreach($sliders as $slider)
  <div class="carousel-item active">
     <img src="{{url('images', $slider->image)}}" class="d-block w-100"  alt="..."> 
  </div>
@endforeach
Comment

Dynamic Carousel in Laravel not working displays only one image

<div id="myCarousel" class="carousel slide" data-ride="carousel">
    <ol class="carousel-indicators">
        <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
    </ol>
    <div class="carousel-inner">
        @foreach($sliders as $key => $slider)
        <div class="carousel-item {{$key == 0 ? 'active' : '' }}">
            <img src="{{url('images', $slider->image)}}" class="d-block w-100"  alt="..."> 
        </div>
        @endforeach
    </div>
    <a class="carousel-control-prev" href="#myCarousel" role="button"  data-slide="prev">
        <span class="carousel-control-prev-icon" aria-hidden="true">     </span>
        <span class="sr-only">Previous</span>
    </a>
    <a class="carousel-control-next" href="#myCarousel" role="button" data-slide="next">
        <span class="carousel-control-next-icon" aria-hidden="true"></span>
        <span class="sr-only">Next</span>
    </a>
</div>
Comment

PREVIOUS NEXT
Code Example
Php :: php get day of week number 
Php :: c# to php 
Php :: Add current year on WordPress using Shortcode 
Php :: laravel pivot select fields 
Php :: laravel add many to many 
Php :: csv file import to mysqli using php 
Php :: php test questions 
Php :: php class instance 
Php :: how get some parameter from request in laravel 
Php :: change url wordpress 
Php :: php get time past midnight 
Php :: laravel maintenance mode custom class 
Php :: laravel search and return record with pagination 
Php :: php if null then 0 
Php :: phph call functions from other .php file 
Php :: doctrine orm refresh 
Php :: php sqlite last insert id 
Php :: laravel map the output of the api 
Php :: php 30days 
Php :: post rest drupal 
Php :: Logging a Massage php 
Php :: avatar generator laravel 
Php :: mage log equivalent magento 2 
Php :: assign random to a variable in PHP 
Php :: restart php service windows 
Php :: php array 
Php :: In PackageManifest.php line 122: Undefined index: name 
Php :: Convert an Integer Into a String in PHP 
Php :: define multiple variables in one line php 
Php :: laravel auth gurd for login user 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =