product {{--
--}}
@csrf

{{ $item['nombre'] }}

PARTNUMBER: {{ $item['part_number'] }}
{{-- CĂ“DIGO: {{ $item['codigo'] }}
--}} CONDITION: {{ $item['condicion'] }}
AVAILABILITY: @if ($item['existencias'] == 0 && $item['en_transito'] == 0) OUT STOCK @else @if ($item['en_transito'] != 0) In transit @else @if ($item['existencias'] >= 300) 300+ @else {{ $item['existencias'] }} @endif PCS @endif @endif
ETA: {{ $item['ETA'] }} DAYS
MOQ: {{ $item['MOQ'] }} UNITS
@if ($item['en_transito'] > 0) IN TRANSIT: {{ $item['en_transito'] }}
@endif @if (session('usuario_autenticado')) PRICE: ${{ $item['precio'] }} @endif

@if ($item['existencias'] > 0 || $item['en_transito'] > 0) @else
Process not available due to lack of stock or in transit
@endif