Skip to content

Commit

Permalink
Fix #135
Browse files Browse the repository at this point in the history
  • Loading branch information
santigarcor committed May 16, 2017
1 parent 2a5e582 commit a5560a0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/views/generators/seeder.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ public function run()
$user = \{{ $user }}::create([
'name' => ucwords(str_replace("_", " ", $key)),
'email' => $key.'@app.com',
'password' => bcrypt('password'),
'remember_token' => str_random(10),
'password' => bcrypt('password')
]);
$user->attachRole($role);
}
Expand Down

0 comments on commit a5560a0

Please sign in to comment.