Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

with in relation laravel

// Laravel Relation within realtions 
$users = User::with(['posts' => function ($query) {
    $query->where('title', 'like', '%code%')->with('comments');
}])->get();
 
PREVIOUS NEXT
Tagged: #relation #laravel
ADD COMMENT
Topic
Name
6+6 =