@if ($allsettings['new_arrival'] == ACTIVE)
      
      {{-- Trending Products Slider - New Arrivals --}}
      
        @foreach ($new_arrivals as $product)
        
          
        
          
          
          {!! productReview($product->id) !!}
          
            Discount > 0)
            class="rscnRegularPrice"
            @else
            class="rscnPrice"
            @endif >
            {{ currencyConverter($product->Price) }}
          
          @if ($product->Discount > 0)
          {{ currencyConverter($product->Discount_Price) }}
          @endif
        
       
     
    @endforeach
  
  {{-- /Trending Products Slider - New Arrivals --}}
@endif
@if ($allsettings['best_selling'] == ACTIVE)
{{-- Trending Products Slider - Best Selling --}}
  @foreach ($best_sellings as $product)
  
    
  
    
    
    {!! productReview($product->id) !!}
    
      Discount > 0)
      class="rscnRegularPrice"
      @else
      class="rscnPrice"
      @endif >
      {{ currencyConverter($product->Price) }}
    
    @if ($product->Discount > 0)
    {{ currencyConverter($product->Discount_Price) }}
    @endif
  
 
 
@endforeach
{{-- /Trending Products Slider - Best Selling --}}
@endif
@if ($allsettings['on_sale'] == ACTIVE)
{{-- Trending Products Slider - On Sale --}}
  @foreach ($on_sales as $product)
  
    
  
    
    
    {!! productReview($product->id) !!}
    
      Discount > 0)
      class="rscnRegularPrice"
      @else
      class="rscnPrice"
      @endif >
      {{ currencyConverter($product->Price) }}
    
    @if ($product->Discount > 0)
    {{ currencyConverter($product->Discount_Price) }}
    @endif
  
 
 
@endforeach
{{-- /Trending Products Slider - On Sale --}}
@endif
@if ($allsettings['featured_items'] == ACTIVE)
{{-- Trending Products Slider - Featured Products --}}
  @foreach ($featured_products as $product)
  
    
  
    
    
    {!! productReview($product->id) !!}
    
      Discount > 0)
      class="rscnRegularPrice"
      @else
      class="rscnPrice"
      @endif >
      {{ currencyConverter($product->Price) }}
    
    @if ($product->Discount > 0)
    {{ currencyConverter($product->Discount_Price) }}
    @endif
  
 
 
@endforeach
{{-- /Trending Products Slider - Featured Products --}}
@endif