I want to create a pagination for post controller, this is my route:
Route::get('post/{page?}' , 'PostController@Test');
And my action:
public function Test($page = 1)
{
$tests = Test::paginate(15, ['*'], 'page', $page);
foreach ($tests as $test) {
echo $test->id;
}
echo $tests->render();
}
Now I can go to http://127.0.0.1:8000/post/2
to open page 2, but my pagination url looks like http://127.0.0.1:8000/post?page=2
Can i fix this?