besnik/laravel-filtering

A powerful tool for developers who use Laravel framework and want to implement filtering functionality in their web applications. This package allows you to easily add filters to your queries, enabling users to search for specific data based on various criteria.

1.1.0 2023-05-23 09:18 UTC

This package is not auto-updated.

Last update: 2024-05-21 14:21:25 UTC


README

php artisan vendor:publish --provider="Besnik\LaravelFiltering\LaravelFilteringServiceProvider" --tag="besnik-filtering-config"

Option field Config:

  1. One
 [
    'options' => [],
    'label_key' => 'name',
    'value_key' => 'id',
 ]
  1. Two
 [
    'model' => User::class,
    'label_key' => 'name',
    'value_key' => 'id',
 ]
  1. Three
 [
    'model' => User::class,
    'label_key' => 'name',
    'value_key' => 'id',
    'search' => true
 ]
  1. Three
 [
    'api' => 'url',
    'method' => 'get',
    'label_key' => 'name',
    'value_key' => 'id',
    'search' => true //optional 
 ]