我想在分页链接中添加自定义搜索参数。
但它重定向到https://localhost:8000/customers?页面=2
$users = User::orderBy('id', 'DESC')
->where($column, $operator, $num)
->where('email', 'LIKE', "%$key%")
->whereBetween('created_at', [$from, $to])
->paginate(10);
我需要这是http://localhost:8000/customers?key=ang&role=&from=&to=&page=2
1条答案
按热度按时间ruarlubt1#
您可以使用appends方法在URL中附加自定义参数,
看起来就像