Ларавел красноречиво без отношений
$books = Book::without('author')->get();
Real Raccoon
$books = Book::without('author')->get();
$movies = Movie::whereHas('director', function($q) {
$q->where('name', 'great');
})->get();