@if(isset($selectedProducts)) @foreach($selectedProducts as $key=>$product)
{{$product['name']}}
{{ translate('Price') }}: {{setCurrencySymbol(usdToDefaultCurrency(amount: $product['unit_price']))}} @if($product->product_type == 'physical') {{ translate('current_stock') }}: {{ $product->current_stock }} @endif {{ translate('Category') }} : {{isset($product->category) ? $product->category->name : translate('category_not_found') }} @if($product->product_type != 'digital') {{ translate('Brand') }} : {{isset($product->brand) ? $product->brand->name : translate('brands_not_found') }} @endif
@if(isset($clearanceConfig) && $clearanceConfig->discount_type == 'product_wise')
@endif
@endforeach @endif