Advertisement
Guest User

Untitled

a guest
May 29th, 2015
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. >>> $user = new App\User
  2. => <App\User #000000001f7c6cca000000001bf50b62> {}
  3. >>> $user->name = "Mike"
  4. => "Mike"
  5. >>> $user->email = "knoth77@gmail.com"
  6. => "knoth77@gmail.com"
  7. >>> $user->password = bcrypt("password")
  8. => "$2y$10$psKHduzs6Vgs7kcGZiCK6.E1B7MLAtZvTF9CC.H6cv9sMnib7s/1W"
  9. >>> $user->admin = 1
  10. => 1
  11. >>> $user->activated = 1
  12. => 1
  13. >>> $user->school_id = 1
  14. => 1
  15. >>> $user->save()
  16. => true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement