How to paginate in laravel?











up vote
0
down vote

favorite












I am working on search option. When user select their desired city, it gives me a array. I merge that array and passed it to view.



This is my code -



public function boatSort(Request $request){
$city = $request->city;//dd($city);
$min = $request->min;
$max = $request->max;

$current_page = LengthAwarePaginator::resolveCurrentPage();

$boat_list = new Boats;
$boat_y = array();
$boat_t = array();
$boat_c = array();

$boat_city = DB::select("SELECT c.name FROM `boats` AS b, `city` AS c WHERE b.city = c.id");

if(count($city)>0){
for($i=0; $i<count($city); $i++){

$boat_city[$i] = DB::select("SELECT * FROM `boats` WHERE city = ".$city[$i]);
$boat_c = array_merge($boat_c, $boat_city[$i]);//dd($boat);

}
$current_page_orders = array_slice($boat_c, ($current_page - 1) * 5, 5);
$boat = new LengthAwarePaginator($current_page_orders, count($boat_c), 5);
return view('user-interface/sort_by', compact('boat', 'boat_city'));
}

}


Now, the problem is whenever I click on second page, I am getting data fetched from db query. But, whenever I click on 1st page it gives all data(Not sorted data). It is not holding a search values.



This is how I am using pagination



{!! str_replace('/?', '?', $boat->render()) !!}


Can you please help me to resolve this? Also, if their is any alternative way for pagination then please let me know.



Thanks in advance to share a knowledge and solution.










share|improve this question






















  • $query->paginate() ?? laravel.com/docs/5.7/pagination
    – ZeroOne
    Nov 18 at 4:05















up vote
0
down vote

favorite












I am working on search option. When user select their desired city, it gives me a array. I merge that array and passed it to view.



This is my code -



public function boatSort(Request $request){
$city = $request->city;//dd($city);
$min = $request->min;
$max = $request->max;

$current_page = LengthAwarePaginator::resolveCurrentPage();

$boat_list = new Boats;
$boat_y = array();
$boat_t = array();
$boat_c = array();

$boat_city = DB::select("SELECT c.name FROM `boats` AS b, `city` AS c WHERE b.city = c.id");

if(count($city)>0){
for($i=0; $i<count($city); $i++){

$boat_city[$i] = DB::select("SELECT * FROM `boats` WHERE city = ".$city[$i]);
$boat_c = array_merge($boat_c, $boat_city[$i]);//dd($boat);

}
$current_page_orders = array_slice($boat_c, ($current_page - 1) * 5, 5);
$boat = new LengthAwarePaginator($current_page_orders, count($boat_c), 5);
return view('user-interface/sort_by', compact('boat', 'boat_city'));
}

}


Now, the problem is whenever I click on second page, I am getting data fetched from db query. But, whenever I click on 1st page it gives all data(Not sorted data). It is not holding a search values.



This is how I am using pagination



{!! str_replace('/?', '?', $boat->render()) !!}


Can you please help me to resolve this? Also, if their is any alternative way for pagination then please let me know.



Thanks in advance to share a knowledge and solution.










share|improve this question






















  • $query->paginate() ?? laravel.com/docs/5.7/pagination
    – ZeroOne
    Nov 18 at 4:05













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am working on search option. When user select their desired city, it gives me a array. I merge that array and passed it to view.



This is my code -



public function boatSort(Request $request){
$city = $request->city;//dd($city);
$min = $request->min;
$max = $request->max;

$current_page = LengthAwarePaginator::resolveCurrentPage();

$boat_list = new Boats;
$boat_y = array();
$boat_t = array();
$boat_c = array();

$boat_city = DB::select("SELECT c.name FROM `boats` AS b, `city` AS c WHERE b.city = c.id");

if(count($city)>0){
for($i=0; $i<count($city); $i++){

$boat_city[$i] = DB::select("SELECT * FROM `boats` WHERE city = ".$city[$i]);
$boat_c = array_merge($boat_c, $boat_city[$i]);//dd($boat);

}
$current_page_orders = array_slice($boat_c, ($current_page - 1) * 5, 5);
$boat = new LengthAwarePaginator($current_page_orders, count($boat_c), 5);
return view('user-interface/sort_by', compact('boat', 'boat_city'));
}

}


Now, the problem is whenever I click on second page, I am getting data fetched from db query. But, whenever I click on 1st page it gives all data(Not sorted data). It is not holding a search values.



This is how I am using pagination



{!! str_replace('/?', '?', $boat->render()) !!}


Can you please help me to resolve this? Also, if their is any alternative way for pagination then please let me know.



Thanks in advance to share a knowledge and solution.










share|improve this question













I am working on search option. When user select their desired city, it gives me a array. I merge that array and passed it to view.



This is my code -



public function boatSort(Request $request){
$city = $request->city;//dd($city);
$min = $request->min;
$max = $request->max;

$current_page = LengthAwarePaginator::resolveCurrentPage();

$boat_list = new Boats;
$boat_y = array();
$boat_t = array();
$boat_c = array();

$boat_city = DB::select("SELECT c.name FROM `boats` AS b, `city` AS c WHERE b.city = c.id");

if(count($city)>0){
for($i=0; $i<count($city); $i++){

$boat_city[$i] = DB::select("SELECT * FROM `boats` WHERE city = ".$city[$i]);
$boat_c = array_merge($boat_c, $boat_city[$i]);//dd($boat);

}
$current_page_orders = array_slice($boat_c, ($current_page - 1) * 5, 5);
$boat = new LengthAwarePaginator($current_page_orders, count($boat_c), 5);
return view('user-interface/sort_by', compact('boat', 'boat_city'));
}

}


Now, the problem is whenever I click on second page, I am getting data fetched from db query. But, whenever I click on 1st page it gives all data(Not sorted data). It is not holding a search values.



This is how I am using pagination



{!! str_replace('/?', '?', $boat->render()) !!}


Can you please help me to resolve this? Also, if their is any alternative way for pagination then please let me know.



Thanks in advance to share a knowledge and solution.







laravel pagination






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 18 at 2:54









Abhishek Honrao

102




102












  • $query->paginate() ?? laravel.com/docs/5.7/pagination
    – ZeroOne
    Nov 18 at 4:05


















  • $query->paginate() ?? laravel.com/docs/5.7/pagination
    – ZeroOne
    Nov 18 at 4:05
















$query->paginate() ?? laravel.com/docs/5.7/pagination
– ZeroOne
Nov 18 at 4:05




$query->paginate() ?? laravel.com/docs/5.7/pagination
– ZeroOne
Nov 18 at 4:05

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53357477%2fhow-to-paginate-in-laravel%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53357477%2fhow-to-paginate-in-laravel%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]