@if (session()->has('message'))
{{ session('message') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif

Manage Product Prices

Set prices for all variants and sizes at once

View All Products
@if($selectedProductId) @endif
@if($showProductDropdown && !empty($productResults))
@foreach($productResults as $product)
{{ $product->name }}
@if($product->style)
Style: {{ $product->style }}
@endif @if($product->category)
Category: {{ $product->category->name }}
@endif
@endforeach
@endif @if(!empty($productSearch) && strlen($productSearch) >= 2 && empty($productResults))
No products found
@endif
@if($selectedProductId && $sizes && $sizes->count() === 0)

This product doesn't have a category with sizes assigned. Please assign a category with a size group first.

@endif @if($selectedProductId && $sizes && $sizes->count() > 0)

Product Prices

@foreach($sizes as $size)
@endforeach
@endif @if(!$selectedProductId)

Select a Product

Choose a product from the dropdown above to manage prices for all its variants

@endif