@extends('layouts.app') @section('title', 'Products') @section('breadcrumb')
Manage all products and their variants
| Image | Product | SKU | Category | Brand | Type | Variants | Status | Actions |
|---|---|---|---|---|---|---|---|---|
|
@if($product->image)
@endif
|
{{ $product->name }} @if($product->serial_tracked) Serial @endif @if($product->warranty_months > 0) {{ $product->warranty_months }}m warranty @endif | {{ $product->sku }} |
{{ $product->category->name }} @if($product->category->parent) under {{ $product->category->parent->name }} @endif | {{ $product->brand?->name ?? '—' }} | @php $typeColors = ['standard'=>'secondary','serial'=>'primary','non_serial'=>'info','service'=>'success','bundle'=>'warning','configurable'=>'danger']; @endphp {{ $product->type_name }} | {{ $product->variants_count }} | {{ $product->is_active ? 'Active' : 'Inactive' }} | |
| No products found. Create your first product. | ||||||||