Available for select projects New York · Working worldwide
Rappasoft LLC
Menu

Laravel Livewire Tables / Documentation / v4

Saving Table State

Installation, configuration, and usage guidance maintained with the project.

There may be occasions that you'd like to save the table state, for example if you have a complex set of filters, search parameters, or simply to remember which page you were on!

You may call the following method to retrieve the state of the table:

1$this->getTableStateToArray();

And to restore it, you should call the following method, passing the stored array.

1$this->restoreStateFromArray(array $storedArray)