We can add multiple AND operator at in a single where() conditions as well as we can also add separate where() for particular AND condition.

BY Best Interview Question ON 29 Dec 2022

Example

DB::table('client')->where('status', '=', 1)->where('name', '=', 'bestinterviewquestion.com')->get();
DB::table('client')->where(['status' => 1, 'name' => 'bestinterviewquestion.com'])->get();