laravel get relationship data with where code example
Example 1: laravel get only relationship
$products = $popularProducts->pluck('product');
Example 2: laravel docs get relationship from relationship
$books = Book::with('author.contacts')->get();