Background (please complete the following information):
Describe the bug
php artisan p:user:delete will always return "No users were found for the search term provided.", even if the user does exists.
To Reproduce
php artisan p:user:deleteExpected behavior
It should give the user(s), and the ability to remove it.
root@node2 /var/www/pterodactyl # php artisan p:user:delete
Enter a Username, UUID, or Email Address:
> test
+---------+---------------+-----------+
| User ID | Email | Name |
+---------+---------------+-----------+
| 18 | [email protected] | test test |
+---------+---------------+-----------+
ID of user to delete (Enter '0' to re-search):
> 18
Are you sure you want to delete this user from the Panel? (yes/no) [no]:
> yes
User successfully deleted from the Panel.
root@node2 /var/www/pterodactyl #
Worked for me?
If I try to create the user (normal behavior for an existing user):
Data integrity exception encountered while performing database write operat
ion. {"email":["The email has already been taken."],"username":["The userna
me has already been taken."]}
And if I try to delete the same user:
No users were found for the search term provided.
Ahh, I see now. It's very very picky...
Create a user with a random username/email/first name and last name of which none are the same.

Try to search for that user:

Nothing...
Most helpful comment
Ahh, I see now. It's very very picky...
Create a user with a random username/email/first name and last name of which none are the same.

Try to search for that user:

Nothing...