+
- @if($product->type === 'bike') Bicicleta
- @elseif($product->type === 'clothing') Indumentaria
- @elseif($product->type === 'spare') Repuesto
- @elseif($product->type === 'children') Infantil
- @elseif($product->type === 'rollers') Rollers
- @elseif($product->type === 'skate') Skate
- @else Accesorio / Otro @endif
+
+
+
+ @if($product->type === 'bike') BICICLETA
+ @elseif($product->type === 'clothing') INDUMENTARIA
+ @elseif($product->type === 'spare') REPUESTO
+ @elseif($product->type === 'children') INFANTIL
+ @elseif($product->type === 'rollers') ROLLERS
+ @elseif($product->type === 'skate') SKATE
+ @elseif($product->type === 'service') SERVICIO
+ @else ACCESORIO / OTRO @endif
+
+
+ {{ $product->name }}
+
+
+
|
-
+
+ |
+ ${{ number_format($product->cost, 2) }}
+ |
+
+
${{ number_format($product->price, 2) }}
|
+
- @if($product->stock_quantity < $product->min_stock_alert)
+ @if($product->stock_quantity <= $product->min_stock_alert)
{{ $product->stock_quantity }}
@elseif($product->stock_quantity <= $product->min_stock_alert+5)
{{ $product->stock_quantity }}
@@ -110,33 +105,29 @@
{{ $product->stock_quantity }}
@endif
|
-
-
-
-
-
-
-
-
+
+ |
+
|
@empty