gpt4 book ai didi

php - 在 Laravel 中以一对多的多态关系从数据库中获取数据的问题

转载 作者:行者123 更新时间:2023-12-04 08:24:15 24 4
gpt4 key购买 nike

我在 Laravel 中有一对多的多态关系,我正在尝试使用 eloquent 查询来获取数据。我有收藏夹表的收藏夹模型

id   user_id   favoritable_id   favoritable_type
1 17 1 App\Models\ProfileImage
2 10 1 App\Models\PostVideo this is some other model
和 profile_images 表
id   user_profile_id   title   path
1 17 etc etc
我需要从 profile_images 表中获取与收藏夹表中的数据相对应的所有 profile_images。因此,来自 profile_images 的 id 与 favouritable_id 相匹配,user_profile_id 与 user_id 相匹配,favoritable_type 与收藏夹表中的 App\Models\ProfileImage 相匹配。任何帮助表示赞赏。这是我的代码。
Controller
public function getProfileImages()
{
$profileimage = ProfileImage::whereColumn('id', 'favoritable_id')->first();
// I AM BASICALLY STUCK HERE WITH $profileimage !!!

$favoriteProfileImages = $profileimage->favorites()->where([
'user_id' => auth()->id(),
'favoritable_id' => $profileimage->id,
'favoritable_type' => ProfileImage::class
])->get();

return $favoriteProfileImages;
}

最佳答案

选项 1
假设 User 和 Favorite 模型之间没有关系,获取当前登录用户的收藏夹表中有条目的所有 PostImage 记录。

$profileImages = Favorite::where('user_id', auth()->id())
->with([
'favoritable' => fn($query) => $query->where('favoritable_type', ProfileImage::class)
])
->get()
->pluck('favoritable')
->flatten()
->all();
选项 2
假设 User hasMany 收藏夹记录 - hasMany 关系存在
class User extends Model
{
public function favorites()
{
return $this->hasMany(Favorite::class);
}

// ...rest of the class code
}
通过 User 模型获取结果
$profileImages = User::with([
'favorites' =>
fn($query) => $query->where('favoritable_type', ProfileImage::class)->with('favoritable')
])
->where('id', auth()->id())
->first()
->favorites
->pluck('favoritable')
->flatten()
->all();

关于php - 在 Laravel 中以一对多的多态关系从数据库中获取数据的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65347832/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com