user: remove name_first
and name_last
This commit is contained in:
parent
2f15d94957
commit
6b11836a41
8 changed files with 7 additions and 23 deletions
|
@ -44,10 +44,10 @@ class DeleteUserCommand extends Command
|
|||
if ($this->input->isInteractive()) {
|
||||
$tableValues = [];
|
||||
foreach ($results as $user) {
|
||||
$tableValues[] = [$user->id, $user->email, $user->name];
|
||||
$tableValues[] = [$user->id, $user->email, $user->username];
|
||||
}
|
||||
|
||||
$this->table(['User ID', 'Email', 'Name'], $tableValues);
|
||||
$this->table(['User ID', 'Email', 'Username'], $tableValues);
|
||||
if (!$deleteUser = $this->ask(trans('command/messages.user.select_search_user'))) {
|
||||
return $this->handle();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue