State-Wise Shipping Rates
Optionally configure custom shipping prices per state. If a state field is left blank, the product's Default Shipping Price will be applied during order checkout.
@if(count($states) > 0)
@foreach($states as $state)
@endforeach
@else
No states found in the system. Default shipping price will apply to all orders.
@endif
Bulk Order Shipping Rates
Configure state-wise shipping prices applied when an order for this book qualifies as a bulk purchase. If a state field is left blank, the Default Bulk Shipping Price below will be used during bulk order checkout.
@error('bulk_shipping_price')
{{ $message }}
@enderror
Fallback bulk price if a state-wise bulk price is not configured
@if(count($states) > 0)
@foreach($states as $state)
@endforeach
@else
No states found in the system. Default bulk shipping price will apply to all bulk orders.
@endif