{{-- filepath: resources\views\AutoGestionCliente\items.blade.php --}}
@forelse($items as $item)
@if($tipo === 'producto') {{ $item->Nombre_Produc }} @else {{ $item->nombre_combo }} @endif

@if($tipo === 'producto') ${{ number_format($item->valor_unitario, 0, ',', '.') }} @else ${{ number_format($item->valor_combo, 0, ',', '.') }} @endif

@empty
No hay {{ $tipo }} disponibles por el momento.
@endforelse