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.

Laravel provides various methods to utilize nested where functions in database queries. Using nested where allows you to create more complex conditions, enhancing the accuracy and efficiency of data retrieval. Below are some common ways to implement nested where functions in Laravel.

Ways to Use Nested Where Functions in Laravel:

  1. Using Nested Where with Closure:

    $users = DB::table('users')
        ->where('status', 'active')
        ->where(function ($query) {
            $query->where('age', '>', 18)
                  ->orWhere('role', 'admin');
        })
        ->get();
    
  2. Using Nested Where with Multiple Conditions:

    $products = DB::table('products')
        ->where('category', 'electronics')
        ->where(function ($query) {
            $query->where('price', '<', 1000)
                  ->where('stock', '>', 0);
        })
        ->get();
    
  3. Using Nested Where with Multiple Tables:

    $orders = DB::table('orders')
        ->where('status', 'completed')
        ->where(function ($query) {
            $query->whereExists(function ($query) {
                $query->select(DB::raw(1))
                      ->from('order_items')
                      ->whereRaw('order_items.order_id = orders.id')
                      ->where('order_items.quantity', '>', 0);
            });
        })
        ->get();
    
  4. Using Nested OrWhere:

    $users = DB::table('users')
        ->where('active', 1)
        ->orWhere(function ($query) {
            $query->where('email_verified_at', '!=', null)
                  ->where('created_at', '>', now()->subYear());
        })
        ->get();
    
  5. Using Nested Where in Eloquent:

    $posts = Post::where('status', 'published')
        ->where(function ($query) {
            $query->where('views', '>', 100)
                  ->orWhere('likes', '>', 50);
        })
        ->get();
    

System requirements:

  • Laravel 5.1 or higher
  • Development environment set up and configured

Tips:

  • Use nested where when dealing with multiple complex conditions for better management and readability of your code.
  • Always check and optimize queries to avoid slowing down your application.
Tags: PHP, Laravel


Related

All ways to SELECT data from a MySQL database in Laravel

Explore various methods to select data from a MySQL database in Laravel, including using Eloquent ORM and Query Builder.
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.
Guide to implementing Apple ID login in Laravel

A detailed guide on how to integrate Apple ID login into a Laravel application using OAuth2. Learn how to configure your application to connect with Apple services and handle user login via Apple ID.
All Ways to DELETE Data from MySQL Database in Laravel

A comprehensive guide on various methods to delete data from a MySQL database in Laravel, including Eloquent, Query Builder, and how to implement soft deletes.
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.
Guide to integrating VNPAY in Laravel with a Sandbox account

A detailed guide on how to integrate VNPAY into a Laravel project using VNPAY's Sandbox account to process online payments, including configuration, payment URL creation, handling callback responses, and creating the interface.
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 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 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 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