0
I’m having trouble paging the data in the view. When performing the search it returns all the data, but when accessing the pagination link it returns the error "Methodnotallowedhttpexception".
I had the same problem on the main search page because of CSRF, but I decided to assign the route in the exceptions of Verifycsrftoken, but I don’t know how to add the pagination routes.
is a POST request, if it’s because you don’t use GET?
– novic
Yes, it’s a post request!
– Rafael Lemes
Couldn’t it be a GET to assemble your url with the data? see is an unnecessary complication (can even do with post, but, gives a small trampo)
– novic
It worked with the GET method! Thanks @Virgilionovic. !
– Rafael Lemes