This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Filter application via given parameters. | |
* | |
* @param QueryBuilder $qb | |
* @param array $data | |
* | |
* @return QueryBuilder $qb filtered results | |
*/ | |
public function filter($qb, $data = []) { | |
$qb->leftJoin('a.experiences', 'ae') // dołączam referencje (relacje), po których też będę szukał |