Here, i will show you laravel or where condition in model. This tutorial will give you simple example of laravel orwhere condition. This tutorial will give you simple example of or where laravel example. i explained simply about or where in laravel eloquent Let's see bellow example or where condition in laravel.
If you need to use sql or where query in laravel then you can use it. Laravel provide orWhere() to use sql or query query. in or where() we just need to pass two argument one is column name and will be value.
You can see bellow syntax on orWhere query in laravel:
orWhere(Coulumn_name, Value);
Now i will give you three example of how to use orWhere query in laravel application. So let's see those example how it works.
Example 1:
SQL Query:
SELECT *
FROM users
WHERE id = '23' OR email = 'itsolutionstuff@gmail.com'
Laravel Query:
public function index()
{
$users = DB::table('users')
->where('id', 23)
->orWhere('email', 'itsolutionstuff@gmail.com')
->get();
dd($users);
}
Example 2:
Here is another example of how it works with model. you can work as like bellow:
public function index()
{
$users = User::select("*")
->where('id', 23)
->orWhere('email', 'itsolutionstuff@gmail.com')
->get();
dd($users);
}
I hope it can help you...
Do you like below Tutorials ?
- How to Display Data in Angular 10?
- Angular 10 Routing Module Example Tutorial
- Angular 10 CRUD Operations with Web API Example
- Laravel 8 CRUD Operation Step By Step Tutorial
- Solved - Target class [ProductController] does not exist in Laravel 8
- Step by Step Form Validation in Laravel 8 Example
- Laravel 8 Image Upload with Preview Example
- Laravel 8 Multiple Images Upload with Preview Example