The issue is that my laravel application speed’s is too slow when the result has over 7k rows.
It keep loading for at 23 seconds or more to show the data in a table (i’m using bootstrap model of datatable)
System details:
PHP Version 8.0.2
Laravel Version 9.11
2
Answers
i used paginate in my controller in this way :
and i add this line in Blade :
and it works at 702ms
Well, you can use Cache and Pagination to solve this problem.