Commit 06692c26 authored by alissonalbuquerque's avatar alissonalbuquerque
Browse files

add professores de teste

parent 39c527a2
......@@ -19,15 +19,15 @@ class UserSeeder extends Seeder
public function run()
{
// UsersTeacher
$ids = range(1, 5);
$ids = [1, 2, 3, 4, 5];
foreach($ids as $id)
{
User::create([
'type' => User::TYPE_TEACHER,
'name' => "User {$id}",
'email' => "user{$id}@upe.br",
'name' => "Professor {$id}",
'email' => "professor{$id}@upe.br",
'email_verified_at' => null,
'password' => Hash::make('12345678'),
'password' => Hash::make('@professor'),
'document' => "00000000{$id}",
'status' => User::STATUS_ACTIVE,
'unidade_id' => 3,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment