Code Monkey home page Code Monkey logo

Comments (4)

jarektkaczyk avatar jarektkaczyk commented on June 16, 2024

Will be easier if you show me real example. Basically you can prepare the search query by yourself, the way you need it. For example:

$query = [];
$query[] = $input->get('firstname') . ' ' . $input->get('lastname');
$query[] = $input->get('lastname') . ' ' . $input->get('firstname');

// if you're passing array instead of string as $query, then it's going to search phrases:
`name` like '%jarek tkaczyk%' or `name` like '%tkaczyk jarek%' ...

from eloquence.

florentsorel avatar florentsorel commented on June 16, 2024

It doesn't work :/

Column not found: 1054 Champ 'clients.firstname lastname' inconnu dans field list

$query = [];
$input = [];

/*if($request->get('company_name')) {
    $query[] = 'company_name';
    $input[] = 'company_name';
}*/

$query[] = 'firstname' . ' ' . 'lastname';
$query[] = 'lastname' . ' ' . 'firstname';


$clients = Client::search($request->all(), $query)->with('contacts')->get();

And with $request->get() I have the same, except it form field name

from eloquence.

florentsorel avatar florentsorel commented on June 16, 2024

My form as an example:
search-filter

The name of my input fields are: company_name, firstname, lastname

And the eloquent relation:

Client hasMany Contact

clients: company_name
contacts: firstname, lastname

If several fields are filled I want to query with AND operator

For example:

  • Find me the firstname and lastname
  • Find me the company name and the firstname

from eloquence.

jarektkaczyk avatar jarektkaczyk commented on June 16, 2024

@Rtransat No, that's not what you'd use this feature for. Its purpose is to easily search items with relevance score (most likely full text), while your example is rather about explicit search. That is, you would explicitly apply the conditions to your query depending on the filled fields.

from eloquence.

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.