次のように書くことはできますか。
$post = Post::join(['author'])->find($postId);
$authorName = $post->author->name;
DB クエリビルダーを使用せずに、内部結合 (2 つの選択なし) を使用して 1 つの選択のみを生成するには
SELECT
post.*,
author.*
FROM post
INNER JOIN author
ON author.id = post.author_id
WHERE post.id = ?