gpt4 book ai didi

php - Laravel 上的多个位置不工作

转载 作者:行者123 更新时间:2023-12-04 05:49:44 26 4
gpt4 key购买 nike

任何人都可以帮我修复此代码吗?

public function caritindaklanjut(Request $request){
$halaman="tindaklayanan";
$cari = '%'.$request->search.'%';
$rows=DB::table('keluhans')
->select(DB::raw('id,produk,username,masalah,status,id_departemen'))
->where('status','=','Pending')
->where(function($query) {
$query->where('produk','like',$cari)
->orWhere('username','like',$cari)
->orWhere('masalah','like',$cari);
})->orderby('id','asc')->get();

它无法将 $cari 传递到 $query 并出现错误...请帮助:)

最佳答案

添加use($cari):

->where(function($query) use($cari) {

关于php - Laravel 上的多个位置不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43199808/

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