diff --git a/app/Http/Controllers/Mobile/UserController.php b/app/Http/Controllers/Mobile/UserController.php index 0d00a05..57df4f1 100755 --- a/app/Http/Controllers/Mobile/UserController.php +++ b/app/Http/Controllers/Mobile/UserController.php @@ -607,9 +607,9 @@ class UserController extends CommonController if (isset($all['course_content_id'])) { $query->where('course_content_id', $all['course_content_id']); } - })->where('user_id1', $user->id) + })->where('user_id', $user->id) ->orderBy('created_at', 'desc') - ->get(); + ->dd(); if ($list->isNotEmpty()) { return $this->success($list); }