Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Laravel Nested whenLoaded

'id' => $this->whenLoaded('parent', function() {
	return $this->when($this->parent->relationLoaded('child1'), function() {
		return $this->when($this->parent->child1->relationLoaded('child2'), function() {
			return $this->parent->child1->child2->id;
		});
	});
}),
 
PREVIOUS NEXT
Tagged: #Laravel #Nested #whenLoaded
ADD COMMENT
Topic
Name
1+6 =