Changing Params Source

By Default, Framework\Crud gets params from filters index in query params, overwrite this by passing params directly to filter or sort functions:

Filter

// this will get filters from find query params
// `GET /api/users?find[name][$eq]=John`
Post::filter(request()->query('find'))->get();
Post::filter($params)->get();

Post::filter([
            'title' => ['$eq' => 'good post']
        ])->get();

Post::filter([
            '$or' => [
                'title' => [
                    '$eq' => 'good post'
                ],
                'author' => [
                    'name' => [ '$eq' => 'John Doe' ],
                    'age' => [ '$gt' => 20 ],
                ],
            ],
        ])->get();

Sort

Post::sort([
            'title',
            'id:desc'
        ])->get();

Last updated