gpt4 book ai didi

Laravel:columnize() 必须是数组类型,给定字符串,调用

转载 作者:行者123 更新时间:2023-12-05 01:00:19 26 4
gpt4 key购买 nike

我想在更新记录时调用此查询而不是 ID,但我收到错误消息 columnize() 必须是数组类型,给定字符串,在 中调用

$user = Attendances::find(DB::raw('concat (firstname, " ",lastname)'), 'like', Input::get('student_name'))->where('section_name', 'like', Input::get('section_name'))->where('teacher_id', '=', Auth::user()->id)->where('subject_code', 'like', Input::get('subject_code'));

请帮忙:(

最佳答案

第一种方法应该是where()同样,因为 find()仅适用于主键。另外最后应该打电话get()first()执行查询:

$user = Attendances::where(DB::raw('concat (firstname, " ",lastname)'), 'like', Input::get('student_name'))
->where('section_name', 'like', Input::get('section_name'))
->where('teacher_id', '=', Auth::user()->id)
->where('subject_code', 'like', Input::get('subject_code'))
->first();

关于Laravel:columnize() 必须是数组类型,给定字符串,调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29457020/

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