updated user seed okay to include real employees names

This commit is contained in:
omair saleh
2020-05-13 01:03:48 +08:00
parent 73348c813e
commit 06074949dc
+1 -1
View File
@@ -40,7 +40,7 @@ class UsersTableSeeder extends Seeder
DB::table('users')->insert([
[
'name' => Str::title($employee),
'email' => Str::snake($employee).'@cief-malaysia.com',
'email' => Str::snake(str::lower($employee)).'@cief-malaysia.com',
'password' => Hash::make('123456abcabc'),
'email_verified_at' => \Carbon\Carbon::now(),
'created_at' => \Carbon\Carbon::now(),