Skip to content

Instantly share code, notes, and snippets.

@aalipar13
Last active August 20, 2019 02:12
Show Gist options
  • Select an option

  • Save aalipar13/287d94240ceebd5bc7a569456ca9906a to your computer and use it in GitHub Desktop.

Select an option

Save aalipar13/287d94240ceebd5bc7a569456ca9906a to your computer and use it in GitHub Desktop.
Laravel - Create User
php artisan tinker
$user = new App\User();
$user->password = 'passw0rt123';
$user->email = 'youremail@ark.ph';
$user->name = 'kiminonawa';
$user->save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment