Skip to content
Advertisement

Call to a member function lastPage() on int using laravel 6

i am starting to create an ads site, i display 36 products images in a blade index with success ,but when i try add pagination i get this error Call to a member function lastPage() on int .

AnnoncesController.php

JavaScript

landing-page.blade.php

JavaScript

Advertisement

Answer

You are calling $paginator->lastPage(); and $paginator is an integer, it should be $annonces->lastPage();

and this section should be

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement