Answers for "laravel wherehas and with"

PHP
3

wherehas laravel search

->whereHas('translation', function ($query) use ($name){
                    $query->where('name', 'like', $name);
                }, '>=', 10)
Posted by: Guest on July-14-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
2

laravel where

$users = DB::table('users')
                ->whereMonth('created_at', '12')
                ->get();
Posted by: Guest on September-14-2020

Code answers related to "laravel wherehas and with"

Browse Popular Code Answers by Language