'flex-justify content in raw of autocomplete

enter image description here

I want to make space long space between name, username and email, this is my code in laravel blade file, javascript. This is autocomplete search, where is in raws some text, and I want to change how it looks. I have now space like item.name+" "+item.surname

This is code where is shown text in autocomplete

results: $.map(data, function (item) {
                                return {
                                    text:item.firstname+' '+item.lastname+' '+' | '+' '+item.name+' '+' | '+' '+item.email,
                                    id: item.user_id,
                                    url: '/master/users/'+item.user_id,
                                }
                            })
    


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source