$posts = Post::with(['author' => function ($q){ $q->where('name','m'); }]) ->get();
$posts = Post::with(['author' => function ($q){ $q->orderBy('name', 'DESC'); }]) ->get();