Skip to content
Readerstacks logo Readerstacks
  • Home
  • Softwares
  • Angular
  • Php
  • Laravel
  • Flutter
Readerstacks logo
Readerstacks
Laravel where condition with example

How to use laravel where condition with example ?

Aman Jain, January 15, 2022January 18, 2022

Laravel eloquent provides multiple ways to build the query one the of the feature of laravel eloquent is creating dynamic query based on condition or complicated queries.In this article i will show you to build where condition in laravel with example. I will show you multiple example to create where condition and also the complicated queries.

Here is the simple syntax to use the laravel where query

Syntax to use

where('COLUMN_NAME', 'OPERATOR', 'VALUE')

//or
 
where('COLUMN_NAME', 'VALUE'); // in this case operator always will be `=`

//or

where('RAW_QUERY_USING_DB_FACADE')

//OR 

whereColumnName('VALUE');

Sql of above query will be

select * from `table` where `COLUMN_NAME` = 'VALUE'

As you can see i have written multiple way to use same method with different parameters. So lets begin with simple examples

Example 1 – Simple where example

In this example i will show you simple where condition with two parameters

<?php
  
namespace App\Http\Controllers;
  
use Illuminate\Http\Request;
use App\User;
  
class ArticleController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {
        $Article = Article::select("*")
                        ->where("title", 'test')
                        ->get();
      \\or
      DB::table('articles')->where("title","test")->get();

   }
}

Output wil be

select * from `articles` where `title` = 'test'

Example 2 – Passing operator to where

In this example we will use operator like greater then, less then, equals to, like etc.

<?php
  
namespace App\Http\Controllers;
  
use Illuminate\Http\Request;
use App\User;
  
class ArticleController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {
        $Article = Article::select("*")
                        ->where("title","like" ,'test')
                        ->get();
      \\or
      DB::table('articles')->where("title","like","%test%")->get();

      \\
      \\or
      DB::table('articles')->where("status",>=,1)->get(); 

   }
}

Output

select * from `articles` where `title` like 'test'

#or
select * from `articles` where `title` like '%test%'

#or

select * from `articles` where `status` >= 1

Example 3 – Multiple where condition

In this example we will use operator like greater then, less then, equals to, like etc.

<?php
  
namespace App\Http\Controllers;
  
use Illuminate\Http\Request;
use App\User;
  
class ArticleController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {
      $Article = Article::select("*")
                        ->where(['title'=>"test","status"=>'1'])
                        ->get();
      //or 

      $Article = Article::select("*")
                        ->where("title","like" ,'test')
                        ->where("status", 1)
                        ->get();
      \\or
      DB::table('articles')->where(['title'=>"test","status"=>'1'])->get();

   }
}

Output

select * from `articles` where `title` = 'test' and `status` = 1

Example 4 – Complicated Raw query in where

In this example we will use DB::raw to use complicated query in our laravel application. Sometimes we wanted to use aggregate function in laravel where so

<?php
  
namespace App\Http\Controllers;
  
use Illuminate\Http\Request;
use App\User;
use DB;
  
class ArticleController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {
      $Article = Article::select("*")
                        ->where(DB::raw("concat(first_name,'', last_name )"),"test test2")
                         ->get();
   }
}

Output

select * from `articles` where concat(first_name,'', last_name ) = 'test test2' 

Example 5 – Add brackets to where condition

In this example we will use DB::raw to use complicated query in our laravel application. Sometimes we wanted to use aggregate function in laravel where so

<?php
  
namespace App\Http\Controllers;
  
use Illuminate\Http\Request;
use App\User;
use DB;
  
class ArticleController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {
      $Article = Article::select("*")
                        ->where("title","test")
                        ->where(function($q){
                          return $q->where("status",1)->where('is_active',1);
                        })
                         ->get();
   }
}

Output

select * from `articles` where `title` = 'test test2' and (`status` = 1 and `is_active` = 1 ) 

Related

Php Laravel laravelphpwhere

Post navigation

Previous post
Next post

Related Posts

Php Image Validation in laravel 8

How to use image validation in Laravel 8 with example

November 21, 2021January 26, 2022

Laravel provides multiple ways to validate a form or a image in form with it’s own validation library. In this tutorial we will learn about the image validation for specific extension and file size. In this tutorial i will use a simple form and a image file input field to…

Read More
Php Integrate Google Map with Marker in Laravel

Integrate Google Map with Marker in Laravel

August 28, 2022March 16, 2024

In this article we will learn to integrate google map with marker in laravel. Google maps are used to share the location or indicate the location of business and any user. In our application we want to show the exact location so in that case google maps are most optimal…

Read More
Php How to Add or Update Index in Laravel Migration

How to Add or Update Index in Laravel Migration?

August 21, 2022March 16, 2024

Add or Update Index in Laravel Migration can be implement easily using the migrations libraries index method. Migrations provides almost all feature to create the database schema and create and update index in laravel migration. As We know database index is used to improve the speed of tables. Index can…

Read More

Aman Jain
Aman Jain

With years of hands-on experience in the realm of web and mobile development, they have honed their skills in various technologies, including Laravel, PHP CodeIgniter, mobile app development, web app development, Flutter, React, JavaScript, Angular, Devops and so much more. Their proficiency extends to building robust REST APIs, AWS Code scaling, and optimization, ensuring that your applications run seamlessly on the cloud.

Categories

  • Angular
  • CSS
  • Dart
  • Devops
  • Flutter
  • HTML
  • Javascript
  • jQuery
  • Laravel
  • Laravel 10
  • Laravel 11
  • Laravel 9
  • Mysql
  • Php
  • Softwares
  • Ubuntu
  • Uncategorized

Archives

  • May 2025
  • April 2025
  • October 2024
  • July 2024
  • February 2024
  • January 2024
  • December 2023
  • November 2023
  • October 2023
  • July 2023
  • March 2023
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021

Recent Posts

  • Understanding High Vulnerabilities: A Deep Dive into Recent Security Concerns
  • Understanding High Vulnerabilities in Software: A Week of Insights
  • Blocking Spam Requests with LaraGuard IP: A Comprehensive Guide
  • Enhancing API Development with Laravel API Kit
  • Exploring the Future of Web Development: Insights from Milana Cap
©2023 Readerstacks | Design and Developed by Readerstacks
Go to mobile version