Products

Products

@if($currentStore) Products for {{ $currentStore->site_name ?? $currentStore->site_url }}. @else Connect a store to manage products. @endif

@if($productLimit)

{{ $productCount }}/{{ $productLimit }} products on free plan

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

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

@else
@foreach($products as $product) @endforeach
Image Product SKU Price Stock Status
@php $thumb = collect($product->images ?? [])->first(); @endphp @if(!empty($thumb['src'])) @else
@endif
{{ $product->name }} {{ $product->sku ?: '—' }} {{ $product->priceFormatted() }} {{ $product->manage_stock ? ($product->stock_quantity ?? 0) : '—' }} {{ \App\Models\WooProduct::STATUSES[$product->status] ?? $product->status }} Edit
{{ $products->links() }}
@endif