fix hdr align if no pages, change perpage to 10

This commit is contained in:
2018-07-22 17:09:08 +02:00
parent 8356997133
commit 6211b38557
2 changed files with 4 additions and 6 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ class UserController extends Controller
{
$tables = $user->tables()
->with('revision:id,row_count')
->paginate(3);
->paginate(10);
return view('user.view')->with(compact('tables', 'user'));
}