I am using below query to get results of 4 id's, but it shows only one result
$id = array(6,7,8,9);      
        $params = array(
            'connection' => 'redis',
            'id' => implode(',',$id)
        );
        $result =  DB::select(
            DB::raw("
                SELECT 
                    * 
                FROM 
                    failed_jobs 
                WHERE 
                    id IN (:id) AND 
                    connection = :connection
            "), $params);
 
    