Как получить все ряды из стола, кроме нескольких рядов в Ларавеле

The 'whereNotIn' method of the DB Facade only accepts an array as second argument
$user = DB::table('users')->whereNotIn('id', [1])->get();
Said HR