I ran this code and it is returning an array. Please, how can I make it return only a user_id and not arrays of user_id?
$userr = DB::table('level_one_models')
->select('user_id')
->where('downline', '<=', 7)
->orderBy('created_at', 'desc')
->get();