Level 50
What do you mean by whole records?
Just remove <table> from blade ;-)
1 like
How to remove Datatable from Laravel View ? I got below code in a view file.
<table>
<tfoot>
{!! $payers->withQueryString()->links() !!}
</tfoot>
</table>
I am getting a pagination at the bottom of the Web Page like below.

How can I remove this DataTable ? I would like to display whole records.
you write in controller for example
$user = User::all()->paginate(3);
but you should write just all();
$user = User::all();
Please or to participate in this conversation.