Hello @gauravjain1
In Bagisto, products often load via AJAX, which Google canโt always crawl. To make them SEO-friendly, render the first batch of products directly from the database in Blade (using Eloquent/Repositories) so the HTML is visible to search engines, and keep AJAX only for filters and sorting. Using Laravelโs pagination (?page=2, ?page=3) also ensures products are crawlable. This way, Google can index your products while users still enjoy a smooth browsing experience.
Regards