Skip to content
Advertisement

How to add a where condition to my search?

I need to add a where condition to my search function, but I don’t know how to add this to my final results. Now, for an example: now, my search is searching for the name in table career_solutions, but it searching in the entire table, and I need to search only by category 2 for example. So, the final result should be … Search for example in category 2 (which is Courses).

Here is my form:

JavaScript

{{ $category->category }} returns me the category name, not the ID of that.

Here is my controller:

JavaScript

Advertisement

Answer

You could add another hidden field to pass the category like :

JavaScript

Then in the controller we need to get the parameter :

JavaScript

And as a last step add it before the select like :

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement