Answers for "how to use and in where and in laravel"

PHP
1

laravel with and where

$projects = Project::whereHas('projectOffers', function ($offer) {
            $offer->where('teacher_id', "Ahmed");
            $offer->where('status_id', "Accepted");
        })->where('status_id', "inprogress")->get();
Posted by: Guest on October-18-2020
0

laravel where and where

Table::where('Column', Value)->where('NewColumn', Value)->get();
Posted by: Guest on September-04-2020

Code answers related to "how to use and in where and in laravel"

Browse Popular Code Answers by Language