@extends('layouts.app') @section('title', 'Shop - Ulfat Collection') @section('content')
@forelse($products as $product)
@include('partials.product-card', ['product' => $product])
@empty

No products found.

@endforelse
{{ $products->appends(request()->query())->links() }}
@endsection