这是默认的laravel notifications
data
字段
{
"type":"Update Appointment",
"appointment_id":"379",
"date":null,
"updated_by":"Mahir",
"status":"2"
}
在controller
我希望通过status = 2
获得所有通知并标记为已读
Laravel 5.3 doc说明
$user = App\User::find(1);
foreach ($user->unreadNotifications as $notification) {
$notification->markAsRead();
}
我如何修改此以获取与status = 2
的所有通知
更新:寻找这样的东西
$noti = $user->unreadNotifications->where('data->status',"2");
注意:我的数据库不支持json
数据类型。
我想,您可以创建自己的频道,(另请参阅Illuminate \ Notifications \ Channels \ DatabaseChannel),您可以在其中覆盖send()方法,以保存通知。在此之前,您可以编写迁移以更新“通知”表以添加自定义筛选字段。见:https://laravel.com/docs/5.5/notifications#custom-channels
对不起我的英语不好。希望,你会明白的。