Laravelのリレーションシップから最新のレコードを取得する方法
最新のレコードを取得するorderByとlatestメソッドを使用する方法:// リレーションシップの定義 public function posts() { return $this->hasMany(Post::class); } // 最新のレコードを取得するクエリ $latestPost = $user->posts()->orderBy('created_at', 'desc')->latest()->first();>>More