@extends('web.layouts.layout') @section('content')

{{ __('products::products.products') }}

@if($products->isNotEmpty()) @foreach($products as $product)
@include('web.products::_product_card')
@endforeach @else
{{ __('general.no_results') }}
@endif {{ $products->links('vendor.pagination.custom2') }}
@endsection @push('stack_scripts') @endpush