project continue

This commit is contained in:
Александр Бабкин
2022-06-27 20:39:35 +03:00
parent 34f6fa7733
commit e8e132051a
7 changed files with 128 additions and 133 deletions

View File

@@ -17,5 +17,13 @@ class UsersTableSeeder extends Seeder
'password' => Hash::make('12345678'),
'is_admin' => true,
]);
DB::table('users')->insert([
'username' => 'bolotina',
'name' => 'Юлия Болотина',
'email' => 'bolotina@dinamika-avia.ru',
'password' => Hash::make('12345678'),
'is_admin' => false,
]);
}
}