1. Go to this page and download the library: Download kalimeromk/filterable library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Kalimeromk\Filterable\Traits\Filterable;
class User extends Model
{
use Filterable;
protected $fillable = ['name', 'email', 'is_active'];
// Define fields for specific filters
protected $boolFields = ['is_active'];
protected $likeFields = ['name', 'email'];
}
use App\Models\User;
use Illuminate\Http\Request;
class UserController extends Controller
{
public function index(Request $request)
{
$filters = $request->only(['name', 'email', 'is_active', 'age_min', 'age_max']);
$users = User::filter($filters)->get();
return response()->json($users);
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.