laravel8でリレーション先のレコード情報の取得
かんたん、かんたん!
app/Http/Controllers/UserController.php
1 2 |
// リレーション先 User::with(['Posts'])->where('user_id', 1)->get(); |
app/Http/Models/User.php
1 2 3 4 5 6 7 |
// リレーション設定 class User extends Model { public function Posts() { return $this->hasMany(Post::class); } |