Laravel paginations not working #211
Unanswered
sumantaakeans2020
asked this question in
Q&A
Replies: 2 comments
-
I've moved this into discussions because this would not be a package bug. Can you share your code around generating the pagination and the controller, we can't help with just your controller code & a screenshot of pagination . |
Beta Was this translation helpful? Give feedback.
0 replies
-
In my blade i have written this, home.blade.php
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
For bug reporting only! If you're posting a feature request or discussion, please ignore.
Expected Behavior
Returns a new page if we click on page number
Current Behavior
It goes into an infinite loop and doesn't get any page view
Context
I created a new route inside the verify.shopify middleware.
Here's my code from web.php:
Route::middleware(['verify.shopify'])->group(function () {
Route::get('/', [HomeController::class, 'index'])->name('home');
});
Laravel Version: v.8.*
Template Engine: Blade
Failure Logs
After click on page number 2 its not loading, using default laravel paging and calling in Shopify app
Beta Was this translation helpful? Give feedback.
All reactions