orWhere Condition Use in Laravel

Hello Friends Today, through this tutorial, I will tell you why we use the orWhere Statement Condition in the laravel framework. So let’s go

Keywords :- Eloquent orWhere Condition Use in Laravel 6.0, orWhere Condition Use in Laravel 5.8, orWhere Condition Use in Laravel 5.7, orWhere Condition Use in Laravel 5.6, orWhere Condition Use in Laravel 5.5, orWhere Condition Use in Laravel 5.4, orWhere Condition Use in Laravel 5.3, orWhere Condition Use in Laravel 5.2

orWhere condition is used to fetch the corresponding value of the same by matching the value from the column of the particular table.

Use orWhere Query Statement in Laravel Query Builder

$users = DB::table('users')
->where('votes', '=', 100)
->orWhere('name', '=', 'John')
->get();

Use orWhere Query Statement in Laravel For Model

$users = User::where('votes', '=', 100)
->orWhere('name', '=', 'John')
->get();

> Greater Then For Price

$users = DB::table('users')
->where('votes', '>', 100)
->orWhere('name', 'John')
->get();

< Less Then For Price

$users = DB::table('users')
->where('votes', '<', 100)
->orWhere('name', 'John')
->get();