Answers for "where condition with laravel"

PHP
0

laravel chunk select

DB::table('users')->chunk(100, function($users)
{
    foreach ($users as $user)
    {
        //
    }
});
Posted by: Guest on September-20-2020
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

Code answers related to "where condition with laravel"

Browse Popular Code Answers by Language