@if(isset($selectedProducts)) @foreach($selectedProducts as $key=>$product)
{{$product['name']}}
{{translate('price').' '.':'.' '}} {{setCurrencySymbol(usdToDefaultCurrency(amount: $product['unit_price']))}}
@if ($product->added_by == "seller")
{{translate('shop').' '.':'.' '}} {{isset($product->seller) ? $product->seller->shop->name : translate('shop_not_found') }}
@else
{{translate('shop').' '.':'.' '}} {{$web_config['company_name']}}
@endif
@endforeach @endif