Refine for Laravel
A package by Hammerstone

Database Stabilization

Refine is a paid package. To purchase, head to hammerstone.dev.

Database stabilization is the most straightforward of all the stabilizers, as it simply stores the filter's state in the database.

If you choose to use this stabilizer, make sure you've published and run the provided migration:

php artisan vendor:publish \
--provider="Hammerstone\Refine\RefineServiceProvider" \
--tag=migrations
 
php artisan migrate

This will create a stored_filters table in your database. By default, the stabilizer will use the Hammerstone\Refine\Models\StoredFilter model.