Laravel Eloquent whereNull() Query Example
I will explain step by step tutorial laravel wherenull example. This post will give you simple example of laravel where null example. We will look at example of wherenull laravel eloquent example. This post will give you simple example of laravel wherenull wherenotnull.
In this example i will give you very simple example of how to use whereNull() and whereNotNull() in laravel application. you can easily use it with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 application.
whereNull() will help you to getting data with null values from database.
whereNotNull() will help you to getting data with not null values from database.
So, let's see bellow examples that will help you how to use whereNull() and whereNotNull() eloquent query in laravel.
Example: whereNull()
SQL Query:
select * from `users`
where `email_verified_at` is null
Laravel Query:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\User;
class UserController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$users = User::select("*")
->whereNull('email_verified_at')
->get();
dd($users);
}
}
Example: whereNotNull()
SQL Query:
select * from `users`
where `email_verified_at` is not null
Laravel Query:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\User;
class UserController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$users = User::select("*")
->whereNotNull('email_verified_at')
->get();
dd($users);
}
}
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel Eloquent whereBetween() Query Example
- Laravel Eloquent whereRaw Condition Example
- Laravel Multiple Where Condition Example
- Laravel Eloquent WhereNotIn Query Example
- Laravel Eloquent WhereIn Query Example
- Laravel WhereIn() and WhereNotIn() with Subquery Example
- Laravel Where Condition with Two Columns Example
- Laravel Where Clause with date_format() Example
- Laravel Where Clause with MySQL Function Example
- Laravel Query Builder Where Exists Example