Guest User

Untitled

a guest
Nov 21st, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. php artisan tinker
  2.  
  3. # Model
  4.  
  5. $user = new App\User
  6.  
  7. $user->name = "Test"
  8.  
  9. $user->email = "test@test.com"
  10.  
  11. $user->password = bcrypt('secret')
  12.  
  13. $user->save()
Add Comment
Please, Sign In to add comment