Laravel Eloquent Multiple WHERE clauses

Today, We want to share with you Laravel Eloquent Multiple WHERE clauses.In this post we will show you Laravel 6 advanced where clauses, hear for Writing multiple where clause query using Eloquent in Laravel we will give you demo and example for implement.In this post, we will learn about How to Create Multiple Where Clause Query Using Laravel Eloquent? with an example.

Laravel Eloquent Multiple WHERE clauses

There are the Following The simple About AND-OR-AND + brackets with Eloquent Full Information With Example and source code.

As I will cover this Post with live Working example to develop Laravel 6 conditional clauses, so the Laravel 6 parameter grouping is used for this example is following below.

multiple where clause query

Syntxt

$query->where([
    ['column_1', '=', 'value_1'],
    ['column_2', '<>', 'value_2'],
    [COLUMN, OPERATOR, VALUE],
    ...
])

multiple conditions and you are using Eloquent query builder

$product = DB::table('products')->where(array(
'p_name' => "iphone new 2020",
'p_desc' => "welcome to tamilrokers",
'p_slogn' => "life is long"))
->get();

create scopes

public function scopeStatus($query)
{
    return $query->where('status', '=', 5);
}

public function scopeDisabled($query)
{
    return $query->where('disabled', '=', 0);
}

call the scopes in Laravel

$products = Product::status()->disabled()->get();

How to use multiple OR,AND condition in Laravel queries

Movie::where('upcomming_status' , 0)
     ->where(function($q) {
         $q->where('type', 'hindi')
           ->orWhere('type', 'english');
     })
     ->get();

dynamic query using Laravel Eloquent

$totalIncome = '50000';
$movies = \App\Movie::select('movi_name', 'income')
        ->when($totalIncome == '50000',
            function($q){
                return $q->where('income','>', 400000);
            },
            function($q){
                return $q->where('income','<', 350000);
            }
        );
dd($movies->get());
Web Programming Tutorials Example with Demo

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about Laravel 6 QueryBuilder class.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment