gpt4 book ai didi

Laravel 5.2 : Undefined Variable in WhereHas

转载 作者:行者123 更新时间:2023-12-04 23:40:03 29 4
gpt4 key购买 nike

我收到 undefined variable $jenis_mobil正好在 $q->where('name', $jenis_mobil->name)

    $jenis_mobil = Car_class::find($request->jenis_mobil);
$dari_kota = City::find($request->dari_kota);

$vehicles = Vehicle::whereHas('car', function($q){
$q->whereHas('car_class', function($q){
$q->where('name', $jenis_mobil->name);
});
})
->whereHas('partner', function($q) {
$q->whereHas('kota_pool', function($q){
$q->where('name', $dari_kota->name);
});
})
->where('year', $request->tahun_mobil)
->get();

我的代码有问题吗?我想是因为 $jenis_mobil没有传递给 whereHas

最佳答案

您应该使用 use()将变量传递到闭包中:

$vehicles = Vehicle::whereHas('car', function($q) use($jenis_mobil) {
$q->whereHas('car_class', function($q) use($jenis_mobil) {
$q->where('name', $jenis_mobil->name);
});
})
->whereHas('partner', function($q) use ($dari_kota) {
$q->whereHas('kota_pool', function($q) use ($dari_kota) {
$q->where('name', $dari_kota->name);
});
})
->where('year', $request->tahun_mobil)
->get();

关于Laravel 5.2 : Undefined Variable in WhereHas,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40446296/

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