@extends('layouts.app') @section('title', 'Gestión de Productos') @section('content')
Sistema completo de inventario con precios multi-unidad
| Código | Nombre | Categoría | Marca | Stock | Precio Base | Estado | Acciones | |
|---|---|---|---|---|---|---|---|---|
|
@if($product->image)
|
{{ $product->code }}
{{ $product->sku }}
|
{{ $product->name }}
@if($product->is_featured)
Destacado
@endif
@if($product->requires_prescription)
Receta
@endif
|
{{ $product->category->name }} |
{{ $product->brand->name }}
|
@if($product->track_stock)
{{ $product->total_stock }} {{ $product->unit_of_measure }}
@else
No rastreado
@endif
{{ $product->stock_status_text }}
|
${{ number_format($product->base_cost_price, 2) }}
@if($product->unit_1_pvp_1 > 0)
PVP: ${{ number_format($product->unit_1_pvp_1, 2) }}
@endif
|
{{ $product->is_active ? 'Activo' : 'Inactivo' }} |
|
No hay productos disponiblesComience creando su primer producto. |
||||||||