Answers for "where to relation laravel"

PHP
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
4

laravel relation of relation

//Multiple relationships:
$books = Book::with('author', 'publisher')->get();

//Nested relationships:
$books = Book::with('author.contacts')->get();
Posted by: Guest on May-17-2021

Code answers related to "where to relation laravel"

Browse Popular Code Answers by Language