$article = Article::with('author')->where('status', true)->get();
$author->job->name;
$article = Article::with('author'->with('job'))->where('status', true)->get();
$article = Article::with(['author', 'author.job'])->where('status', true)->get();
Find more questions by tags Active RecordLaravelMySQLPHP