@foreach ($products as $pc)

{{ (strlen($pc->name) > 40) ? substr($pc->name, 0, 45) . '...': $pc->name }}

MARCA: {{ $pc->brand->b_description ?? '' }}
${{ number_format($pc->price, 2, '.', ' ') }} - S/{{ number_format(($pc->price * $configGeneral->cambio), 2, '.', ' ') }}
@endforeach