Overview of Laravel Purity
masterLaravel Purity is a package designed to simplify complex data filtering and sorting logic for Eloquent queries in Laravel. It allows frontend users to apply filters and sorting via URL query string parameters. The package's filtering and sorting syntax is inspired by Strapi's API functionality.
// Basic usage pattern
$posts = Post::filter()->get();