Giter Site home page Giter Site logo

Comments (4)

Tucker-Eric avatar Tucker-Eric commented on June 10, 2024

If I'm understanding correctly you should be able to leave that as is and it should work. The $relations array will forward the user_search parameter to search in the UserFilter and then you can add methods locally on AnotherEntity model to filter on AnotherEntity.

from eloquentfilter.

git-itmailbox avatar git-itmailbox commented on June 10, 2024

I'd like to have filter like this one

public $relations = [
    'order.user' => [
        'user_search'  => 'search',
    ]
];

public function search($search)
{
     //so here I need somehow to combine  'user_search' and another additional filter by own field or even another relation
    return $this->userSearch($search)
                      ->name($search); //name of AnotherEntity
}

public function name($search)
{
    return $q->where('name', 'LIKE', "%$name%");
}

and ofcourse conditions must be connected with OR operator

from eloquentfilter.

Tucker-Eric avatar Tucker-Eric commented on June 10, 2024

So this is kind of tricky in the filter because when using the $relations array or related method they both collect all calls to each related entity and nest all those in one root level whereHas query so combining either of those methods with an or could potentially lead to unexpected behavior when adding more parameters that would chain with and queries.

I would suggest to not use the $relations array or related() method for this use case and use a nested where query where you can join with an or.

So, given the query to AnotherEntity:

AnotherEntity::filter([
	'search'      => 'some_string',
	'user_search' => 'user_string'
])
->get()

And the AnotherEntityModelFilter to search both strings with an OR condition:

public function search($search)
{
    return $this->where(function($query) {
    	$query->whereHas('order.users', function($q) {
    		// $q is an instance of the User query builder
    		// so it has access to the UserModelFilter
    		// allowing us to call `filter` on it
    		$q->filter([
    			'search' => $this->input('user_search')
    		]);
    	})
    	->whereLike('name', $search, 'or');
    });
}

from eloquentfilter.

git-itmailbox avatar git-itmailbox commented on June 10, 2024

thanks, will try your solution. @Tucker-Eric

from eloquentfilter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.