store {{__('messages.Add Prices To Product')}} - {{$product->name}}
@if (session()->has('message'))
{{ session('message') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif @foreach($productPrices as $index=>$productPrice)
productPrices[{{$index}}][currency_id] {{trans_choice('messages.currency' , 1)}} productPrices.{{$index}}.currency_id @foreach (\App\Models\Currency::all() as $currency) @endforeach
@if(!$loop->first)
@endif
@endforeach @livewire('product-prices-list-component' , ['productPricesList'=>$product->product_prices , 'product' => $product])