通过Where子句获取ID

时间:2020-10-01 20:01:04

标签: laravel get notifications where-clause middleware

我有一个问题。有谁知道在这种情况下如何获取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

1 个答案:

答案 0 :(得分:0)

我不确定我是否正确理解你。

您需要将数据的Evaluation_id与$ request-> id进行比较?

如果这样:

     $notification = auth()->user()->unreadNotifications()
->where('Data->evaluation_id', $request->id)->first();