Receive the parameters of the FE
heyner29 opened this issue · 1 comments
heyner29 commented
This is a bug | feature request.
Prerequisites
- Are you running the latest version?
- Are you reporting to the correct repository?
- Did you check the documentation?
- Did you perform a cursory search?
Description
What is the way to receive the $request
in the new version?. In the previous version I did it with: json_decode($this->request->get('params'))
I am migrating my tables to the new version and the previous form does not work :( and the documentation is not updated yet.
aocneanu commented
you receive now in the constructor a tables request with the following getters:
public function __construct (LaravelEnso\Tables\app\Services\Data\Request $request)
{
$request->columns(): Obj
$request->meta(): Obj
$request->filters(): Obj
$request->intervals(): Obj
$request->params(): Obj
}
Docs is updated as we speak