@if($products_vendor) @lang('Vendor')
{{$products_vendor->name}} @endif
@if(!empty($search = request()->s))
@lang('Showing :total_products products with :per_page products per page for keyword:
:keyword', ['total_products' => $products->total(), 'per_page' => $products->perPage(), 'keyword' => $search])
@lang('Show all')
@else
@lang('Showing :total_products products with :per_page products per page', ['total_products' => $products->total(), 'per_page' => $products->perPage() ])
@endif
@if(empty(request()->all))
@lang('Show products in a single page')
@else
@lang('Show products with pagination')
@endif
@if(!request()->all)
{{$products->appends($_GET)->links()}}
@endif