{{-- New-Unity ERP | Modules/Products/Resources/Views/products/_rows.blade.php | v1.0 | 01/08/2026 --}} {{-- v1.0 — Partial de filas de la tabla de productos. Usado para render inicial (blade) y AJAX (JSON). --}} @forelse($products as $product) {{ $product->group_code }} {{ $product->category->name ?? 'N/A' }} {{ $product->product_number }} {{ $product->product_name }} @if($product->is_bundle) {{ __('products.badge-kit') }} @else {{ __('products.badge-product') }} @endif @if($product->status_id == 1) {{ __('products.badge-active') }} @else {{ __('products.badge-inactive') }} @endif @if($product->is_bundle) @else @endif @if($product->is_bundle) @else @endif @if($product->status_id == 1) @else @endif @can('products.delete') @if($product->status_id != 1) @endif @endcan @empty {{ __('products.no-products') }} @endforelse