The page on which the user is on ... do you mean the Excel sheet ?
Oct 4, 2022
6
Level 1
export to excel with laravel excel
hello friends, I am implementing excel download of a table with paging, how is it possible to export only the records that are shown on the page that the user is on. Thank you
Level 1
I have solved it in the following way in the controller, thanks!
$users = User::paginate(5, ['*'], 'page', $pageNumber);
1 like
Please or to participate in this conversation.