With this trick we add custom queries in the laravel paginator.
$users = User::orderBy(\Request::get('orderby'), $order)->paginate($limit); $users->addQuery('orderby', \Request::get('orderby'));