我有一个问题。有谁知道在这种情况下如何获取id id
public function handle($request, Closure $next)
{
if($request->has('id')) {
$notification = auth()->user()->unreadNotifications()->where('I need put something here', $request->id)->first();
if($notification) {
$notification->markAsRead();
}
}
return $next($request);
}
我的表结构就像
ID:4
Notifiable_type应用程序\用户
Notifiable_id 1
数据:{“ evaluation_id”:1}!这就是我的情况下$ request-> id等于Evaluation_id的点,我还需要从数据列内部获取Evaluation_id进行比较并获取ID
答案 0 :(得分:0)
我不确定我是否正确理解你。
您需要将数据的Evaluation_id与$ request-> id进行比较?
如果这样:
$notification = auth()->user()->unreadNotifications()
->where('Data->evaluation_id', $request->id)->first();