Power-Components / livewire-powergrid

⚡ PowerGrid generates modern, powerful and easy-to-customize data tables using Laravel Livewire.
https://livewire-powergrid.com
MIT License
1.46k stars 215 forks source link

Improve Filters Structure #1356

Closed luanfreitasdev closed 7 months ago

luanfreitasdev commented 7 months ago

⚡ PowerGrid - Pull Request

Welcome and thank you for your interest in contributing to our project!. You must use this template to submit a Pull Request or it will not be accepted.


Motivation

Description


Add automatic queryString

protected function queryString(): array
{
    return [
         'search' => ['except' => ''],
         'page' => ['except' => 1],
         ...$this->powerGridQueryString(),
    ];
}

Result:

?name=Ark&category=1&price_start=8&price_end=10&diet=1


TODO

Related Issue(s): #_____.

Documentation

This PR requires Documentation update?