Advertisement
info1atual

Laravel - Manter query no paginate

Nov 20th, 2014
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. //---- Inserido no arquivo routes.php ----\\
  2.  
  3. //-----------------------------------------------------------------------------------\\
  4. //-------------------- Acrescentar parametro get na paginação -----------------------\\
  5. //-----------------------------------------------------------------------------------\\
  6.  
  7. View::composer(Paginator::getViewName(), function($view) {
  8.    $query = array_except( Input::query(), Paginator::getPageName() );
  9.     $view->paginator->appends($query);
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement