@extends('layouts.tienda') @section('content')
@if($superior->count()) @endif
@if($recomendados->count() > 0)

Recomendaciones. Los mejores productos para usted

@foreach($recomendados as $rec)
{{ $rec->post_title }}

{{ $rec->name }}

{{ $rec->pinged }}

@if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $rec->precio }} @else {{ $rec->precio }} {{$moneda->simbolo}} @endif
@endforeach
{{ $recomendados->links('tienda.paginate.tienda_externa') }}
@endif @if($vistos->count() > 0)

Los más vendidos. Los más vendidos del mes

@foreach($vistos as $vist)
{{ $vist->post_title }}

{{ $vist->name }}

{{ $vist->pinged }}

@if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $vist->precio }} @else {{ $vist->precio }} {{$moneda->simbolo}} @endif
@endforeach
{{ $vistos->links('tienda.paginate.tienda_externa') }}
@endif
@if($inferior->count()) @endif
@endsection