Products

Products

Manage WooCommerce products synced from your connected stores.

@if($stores->isNotEmpty())
@csrf
@endif New product
@if($stores->isNotEmpty()) @endif
@if($products->isEmpty())

No products yet. Sync from a connected store or create one here.

@else
@foreach($products as $product) @endforeach
Image Product Store SKU Price Stock Status
@if($product->thumbnailUrl()) @else No image @endif

{{ $product->name }}

@if($product->categoryNames())

{{ implode(', ', $product->categoryNames()) }}

@endif
{{ $product->store?->site_name ?? parse_url($product->store?->site_url ?? '', PHP_URL_HOST) }} {{ $product->sku ?: '—' }} {{ $product->priceFormatted() }} @if($product->manage_stock) {{ $product->stock_quantity ?? 0 }} @else — @endif {{ $product->statusLabel() }} Edit
@if($products->hasPages())
{{ $products->links() }}
@endif @endif