user management v1.6-alpha.1

This commit is contained in:
carodej
2020-05-27 10:22:33 +02:00
parent 143aca64dc
commit a76d1dec3b
54 changed files with 3489 additions and 535 deletions

View File

@@ -109,9 +109,9 @@ class SetupDevEnvironment extends Command
$user = User::create([
'name' => 'Jane Doe',
'email' => 'howdy@hi5ve.digital',
'password' => \Hash::make('secret'),
'password' => \Hash::make('vuefilemanager'),
]);
$this->info('Test user created. Email: ' . $user->email . ' Password: secret');
$this->info('Test user created. Email: ' . $user->email . ' Password: vuefilemanager');
}
}