You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
358 B

4 years ago
  1. <?php
  2. class UserSeed {
  3. function run()
  4. {
  5. $user = new User;
  6. $user->email = "sobic@sobic.nextsun";
  7. $user->password = "d404559f602eab6fd602ac7680dacbfaadd13630335e951f097af3900e9de176b6db28512f2e000b9d04fba5133e8b1c6e8df59db3a8ab9d60be4b97cc9e81db";
  8. $user->isAdmin = true;
  9. $user->img = "dsadssd";
  10. $user->social = "dsadssd";
  11. $user->save();
  12. }
  13. }