paginate(1);
dosent work in your controller ?
you have to add one line code to the app/Providers/AppServiceProvider.php file. Just use the below codes inside the boot() method.
Paginator::useBootstrap();
Hello everyone!
Quick look at this photo is showing the problem

Here is how I'm currently paginating the results
$logs = CompanyActionsLog::where('company_id', $companyData->id)->orderBy('spent_at', 'DESC')->where('type', 'decrement')->where('is_system_log', 0)->paginate(3, ['*'], 'logsPage')->onEachSide(1);
How can I fix this problem? onEachSide() doesn't help in my case. I want to somehow set how many pages can be maximum displayed.
Please or to participate in this conversation.