PHP Laravel-继续在URL中使用传递的参数用于其他URL,例如分页链接

时间:2018-08-14 11:27:53

标签: php laravel

我为客户列表设置了过滤器:

    // Create a new Locale object
    Locale locale = new Locale("ru");
    Locale.setDefault(locale);
    // Create a new configuration object
    Configuration config = new Configuration();
    // Set the locale of the new configuration
    config.locale = locale;
    // Update the configuration of the Accplication context
    getResources().updateConfiguration(
        config, 
        getResources().getDisplayMetrics()
    );

我有?countries=Germany,France&status=1,3 Previous分页。

以下示例在Blade模板中

Next

但是,这些链接不包含url中的参数。

保存这些过滤器而不将其保存到会话或cookie的最佳方法是什么,这不是应该的方式?还是应该?

1 个答案:

答案 0 :(得分:1)

尝试此=> $paginator->appends(request()->query->all())->previousPageUrl();