How to use the where function in Laravel

A detailed guide on using the `where` function in Laravel to perform effective and flexible database queries.

In Laravel, the where function is used to add conditions to database queries. This article will introduce different usages of the where function, from basic to advanced, including simple conditions and more complex ones.

Different ways to use the where function in Laravel:

  1. Using with simple condition:

    $users = User::where('status', 'active')->get();
    
  2. Using with multiple conditions:

    $users = User::where('status', 'active')
                 ->where('role', 'admin')
                 ->get();
    
  3. Using with OR condition:

    $users = User::where('status', 'active')
                 ->orWhere('status', 'pending')
                 ->get();
    
  4. Using with array of conditions:

    $users = User::where([
        ['status', '=', 'active'],
        ['role', '=', 'admin']
    ])->get();
    
  5. Using whereIn method:

    $users = User::whereIn('id', [1, 2, 3])->get();
    
  6. Using whereNotIn method:

    $users = User::whereNotIn('id', [1, 2, 3])->get();
    
  7. Using whereBetween method:

    $users = User::whereBetween('age', [18, 25])->get();
    
  8. Using whereNull method:

    $users = User::whereNull('deleted_at')->get();
    
  9. Using whereNotNull method:

    $users = User::whereNotNull('email')->get();
    
  10. Using whereDate method:

    $users = User::whereDate('created_at', '2024-01-01')->get();
    
  11. Using whereMonth method:

    $users = User::whereMonth('created_at', '01')->get(); // January
    
  12. Using whereYear method:

    $users = User::whereYear('created_at', '2024')->get();
    
  13. Using whereDay method:

    $users = User::whereDay('created_at', '01')->get();
    
  14. Using whereColumn method:

    $users = User::whereColumn('created_at', 'updated_at')->get();
    
  15. Using whereRaw method:

    $users = User::whereRaw('age > ? AND status = ?', [18, 'active'])->get();
    

System requirements:

  • Laravel 8.x or higher
  • PHP 7.x or higher

Tips:

  • Use complex conditions judiciously to avoid degrading query performance.
  • Read the official Laravel documentation to learn more about other querying methods.
Tags: PHP, Laravel


Related

How to POST data to an API in Laravel

A guide on how to use Laravel to send POST requests to an external or internal API. Learn how to easily and securely send data using Laravel's built-in HTTP Client.
How to pass Authentication Header Token when POSTing data to an API in Laravel

A guide on how to pass an Authentication Header Token when POSTing data to an API in Laravel. The article covers how to use Laravel's built-in `HTTP Client` to send a Token along with the data to the API.
How to Write Content to an Excel File in Laravel

A step-by-step guide on how to write content to an Excel file in Laravel using the Maatwebsite Excel library, allowing you to easily export data from your Laravel application to an Excel file.
JSON Web Token (JWT) Authentication with Laravel

Step-by-step guide to implementing API authentication using JSON Web Token (JWT) in Laravel. This article covers installation and configuration to secure your web application using token-based authentication.
All methods to UPDATE data in a MySQL database using Laravel

A comprehensive guide on how to update data in a MySQL database using Laravel, covering both Eloquent ORM and Query Builder methods.
Generating Captcha in Laravel

A detailed guide on how to create a Captcha in Laravel to protect forms from spam and verify user authenticity. This tutorial will help you integrate Captcha into your Laravel project with ease.
How to use nested Where functions in Laravel

This article summarizes the ways to use nested `where` functions in Laravel, helping readers understand how to construct complex queries in their applications.
Read Excel Content Using Laravel

A detailed guide on reading Excel file content in Laravel using the Laravel Excel package. This article provides sample code, a step-by-step explanation, and instructions for installing the necessary package.
All ways to insert data into MySQL database in Laravel

Explore different methods to insert data into a MySQL database in Laravel, including using Eloquent ORM and Query Builder.
How to convert a Markdown string to HTML using Laravel

A guide on how to convert a Markdown string to HTML in Laravel using the `league/commonmark` library, making the conversion process simple and effective.

main.add_cart_success