Demo with very large tables. Don't forget that in large tables your columns must be indexed to give you maximum speed.
public function one_million_rows()
{
$xcrud = get_xcrud();
$xcrud->table('million');
$xcrud->limit_list('20,50,100,1000'); // do not use 'all' for large tables
$xcrud->benchmark(); // lets see performance
$data['content'] = $xcrud->render();
return view('demos', $data);
}