{{--

{{ __('By Category') }} {{ app()->getLocale() === 'ar' ? $category->name_ar : $category->name }}

--}}
@forelse ($products as $product)

{{ 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
@empty

{{ __('No products found matching') }}

@endforelse
{!! $products->links('pagination::default') !!}