I have a search filter with with values for the min and max price(Currency converter) and I would like to change the value of the currency on the same page, when I run it at the moment the price input wont change until I've changed page with pagination link.
I append price like this on view($max_price from the controller):
{!! Form::text('max_price',(int)$max_price,array('class'=>'sliderValue')) !!}
the query url string :
www.example.com/items?search=min_price=0&max_price=1814
$items->setPath('items');
$items->appends(['search' => $input['search'], 'min_price' =>
$min_price, 'max_price' => $max_price]);
Solved it by using $request->replace($requestArray)