@foreach ($products as $item)

{{$item->prod_description}}

CÓDIGO: {{ $item->prod_code }}
MINICÓDIGO: {{ $item->prod_min_cod }}
STOCK: {{ ($item->stock > 10) ? '+10' : $item->stock }}

@switch($configGeneral->prices) @case(1) ${{ number_format($item->prod_priceone, 2, '.', ' ') }} - S/{{ number_format(($item->prod_priceone * $configGeneral->cambio), 2, '.', ' ') }} @break @case(2) ${{ number_format($item->prod_pricetwo, 2, '.', ' ') }} - S/{{ number_format(($item->prod_pricetwo * $configGeneral->cambio), 2, '.', ' ') }} @break @default ${{ number_format($item->prod_pricethree, 2, '.', ' ') }} - S/{{ number_format(($item->prod_pricethree * $configGeneral->cambio), 2, '.', ' ') }} @endswitch
@endforeach