@foreach ($products as $item)

{{$item->prod_description}}

@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