update database

This commit is contained in:
manhlab
2021-04-09 11:06:46 -04:00
parent 311b478270
commit dbe6e18227
3 changed files with 18 additions and 6 deletions

View File

@@ -24,6 +24,17 @@ class UserSeeder extends Seeder
'title_id' => 'TP',
'email_verified_at' => now(),
],
[
'id' => 'PKTCN-TP-100',
'name' => 'User',
'email' => 'user@domain.com',
'password' => Hash::make('password'),
'tel' => '7988111000',
'birthday' => '1975-04-30',
'department_id' => 'PKTCN',
'title_id' => 'TP',
'email_verified_at' => now(),
],
]);
factory(App\Entities\User::class, 300)->create();