Products Management

Name Scraped Specs Images Verified Created @foreach ($products as $product) @endforeach
Brand Category Subcategory SKU Family Status Actions
{{ $product->brand?->name ?? 'N/A' }} {{ $product->name }} {{ $product->category?->name ?? 'N/A' }} {{ $product->subcategory?->name ?? 'N/A' }} @if($product->competitor_analyses) Yes @else No @endif @php $isFailed = cache()->get("gather_data_failed:{$product->id}", 0) >= 1; @endphp @if($product->product_specs && !empty($product->product_specs) && count($product->product_specs) > 0) Yes @elseif($isFailed) Failed @else No @endif @if($product->has_product_images) {{-- Green background with tick - images downloaded and ready --}} Yes @elseif($product->has_competitor_images) {{-- Plain tick - competitor images available but not downloaded --}} Yes @else {{-- Cross - no images at all --}} No @endif @if($product->verified) Verified @else Not Verified @endif {{ $product->sku_family ?? 'N/A' }} @if($product->is_discontinued) Discontinued @else Active @endif {{ $product->created_at->format('M d, Y') }}
View
{{ $products->links() }}

{{ $isEditing ? 'Edit Product' : 'New Product' }}

@if (!$isEditing)

Quickly add a new product to your inventory

@endif
@if($filteredBrands->isEmpty() && $brandSearch)
Will create new brand: {{ $brandSearch }}
@else
@foreach($filteredBrands as $index => $brand) @endforeach
@endif
@if ($isEditing)
@endif
Cancel {{ $isEditing ? 'Save Changes' : 'Create' }}