Skip to content

Instantly share code, notes, and snippets.

@diegofelix
Forked from fhferreira/routes.php
Created January 9, 2014 10:12
Show Gist options
  • Save diegofelix/8332070 to your computer and use it in GitHub Desktop.
Save diegofelix/8332070 to your computer and use it in GitHub Desktop.
Laravel 4: Custom Paginator
<?php
View::composer(Paginator::getViewName(), function($view) {
$query = array_except( Input::query(), Paginator::getPageName() );
$view->paginator->appends($query);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment