@if(session('success'))
{{ session('success') }}
@endif
@csrf @if($product->exists)@method('PATCH')@endif
Cancel
@if($product->exists)

Customer pricing

Override the base price for a customer and quantity threshold.

@csrf
@forelse($product->priceOverrides as $override)

{{ $override->customer->name }}

From {{ number_format((float)$override->minimum_quantity,2) }} {{ $product->unit }}

KES {{ number_format((float)$override->unit_price,2) }}

@csrf @method('DELETE')
@empty
No customer-specific prices.
@endforelse
@endif