Ask Your Question
1

What is the method for applying multiple criteria filters in Laravel?

asked 2021-12-04 11:00:00 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2021-04-12 22:00:00 +0000

devzero gravatar image

In Laravel, we can apply multiple criteria filters using the where method on a database query builder. The where method can be used multiple times with different filter conditions to specify multiple criteria.

For example, let's say we have a users table and we want to filter users by their age and gender. We can use the following code:

$users = DB::table('users')
            ->where('age', '>', 30)
            ->where('gender', 'male')
            ->get();

This code will retrieve all users who are male and over 30 years of age.

We can also use the orWhere method to specify multiple criteria using OR conditions instead of AND conditions. For example:

$users = DB::table('users')
            ->where('age', '>', 30)
            ->orWhere('gender', 'male')
            ->get();

This code will retrieve all users who are either male or over 30 years of age.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-12-04 11:00:00 +0000

Seen: 18 times

Last updated: Apr 12 '21