I am working on E-commerce website. I want to show products on load more button click instead of pagination but it shows me previous products not next any reference or idea how can I do that. this is my code
$products = Product::with('category')->paginate(3);
$(document).on('click','#loadmore',function(){
$.get($ul.find("a[rel='next']").attr("href"), function(response) {
console.log($(response).find("#productData").html());
var data = $(response).find("#productData").html();
$posts.append(data);
});
});
Load more is nothing but pqgination, the only difference is that you paginate on the click of load more button. You can use the next link in the$products->nextPageUrl() which laravel provides to load the next page (rmember to replace the href on the load more anchor after each call). For more info on laravel pagibation, look at https://laravel.com/docs/5.8/pagination#paginator-instance-methods
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
About the technologies asked in this question
PHP
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license. https://www.php.net/
Laravel
Laravel is a free open source PHP framework that came out in 2011. Since then, it has been able to become the framework of choice for web developers. One of the main reasons for this is that Laravel makes it easier, faster, and safer to develop complex web applications than any other framework. https://laravel.com/
HTML
HTML (English "hyper text markup language" - hypertext markup language) is a special markup language that is used to create sites on the Internet.
Browsers understand html perfectly and can interpret it in an understandable way. In general, any page on the site is html-code, which the browser translates into a user-friendly form. By the way, the code of any page is available to everyone. https://www.w3.org/html/
Welcome to programmierfrage.com
programmierfrage.com is a question and answer site for professional web developers, programming enthusiasts and website builders. Site created and operated by the community. Together with you, we create a free library of detailed answers to any question on programming, web development, website creation and website administration.
Get answers to specific questions
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Help Others Solve Their Issues
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.
This site uses cookies. We use them to improve the performance of our website and your interaction with it. Confirm your consent by clicking OK