@forelse($products ?? [] as $product)

{{ ($product->sale_status == 2 ? __('Open Box',[],app()->getLocale()) : ($product->sale_status == 3 ? __('Very Good',[],app()->getLocale()) : __('Good',[],app()->getLocale()) )) }}

{{ $product->getTranslation('title',app()->getLocale()) }}

{{ $product->getTranslation('description',app()->getLocale()) }}

( {{ number_format($product->reviews?->avg('rating'),2) ?? 0 }} )

{{ $product->product_net_price }}

@empty

{{ __('There are no products to display.') }}

@endforelse