gpt4 book ai didi

json - laravel 按数据字段为用户选择通知

转载 作者:行者123 更新时间:2023-12-04 01:53:17 25 4
gpt4 key购买 nike

我有默认的 Laravel 通知数据字段和默认通知表
只尝试根据他的通知数据值为用户选择一些通知我在用户模型中创建了这个函数

public function notifications_data($col)
{
$notifications = $this->notifications()->where('data' , function ($q) use ($col){
$q->where('appointment_id','0'); // query data as table
})->get();

return ($notifications);

}

我在通知表 col 数据中保存了值 { "type":"Appointment", "appointment_id":"0", "date":null, "updated_by":"","status":"0"}

我如何获得它以获取状态 = 0 或约会 ID = 0 的所有通知

最佳答案

您还可以使用:

public function notifications_data($col)
{
$notifications = $this->notifications()
->where('data->appointment_id', 0)
->orWhere('data->status', 0)
->get();

return ($notifications);
}

关于json - laravel 按数据字段为用户选择通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51995062/

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