Answers for "laravel where on with relationship"

PHP
2

laravel where condition on relationship

AppRequest::where('id',4)
    ->whereHas('quotes', function ($query) {
        $query->where('status','=','3');
    })
    ->with('quotes','sourceTable','destinationTable')
    ->get();
Posted by: Guest on November-30-2020
3

how to use where relationship laravel

Event::with(["owner", "participants" => function($q) use($someId){
    $q->where('participants.IdUser', '=', 1);
    //$q->where('some other field', $someId);
}])
Posted by: Guest on July-29-2020

Code answers related to "laravel where on with relationship"

Browse Popular Code Answers by Language