Guest User

Untitled

a guest
May 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $page = $request->has('page') ? $request->get('page') : 1;
  2. $total = UserAdmin::count();
  3. $perPage = 10;
  4. $showingTotal = $page * $perPage;
  5.  
  6. $currentShowing = $showingTotal>$total ? $total : $showingTotal;
  7. $showingStarted = $showingTotal - $perPage;
  8. $tableInfo = "Showing $showingStarted to $showingTotal of $total";
Add Comment
Please, Sign In to add comment