{{ __('Showing') }} 1–{{ $productsCount > 18 ? '18' : $productsCount }} {{ __('of') }} {{ $productsCount }} {{ __('results') }}{{ __('Sorted by popularity') }}
@forelse ($categories as $category)
@empty
@endforelse
{{ app()->getLocale() === 'ar' ? $category->name_ar : $category->name }}
{{ __('No categories found') }}
{{ __('By Category') }} {{ app()->getLocale() === 'ar' ? $category->name_ar : $category->name }}
@forelse ($products as $product)
@empty
{{ app()->getLocale() === 'ar' ? $product->name_ar : $product->name }}
{{ app()->getLocale() === 'ar' ? 'دأ ' : 'JD' }}
@if($product->price_after_discount)
{{ $product->price }}
{{ $product->price_after_discount }}
@else
{{ $product->price }}
@endif
{{ __('No products found matching') }}
@endforelse