Skip to content

Instantly share code, notes, and snippets.

@aalipar13
Last active August 20, 2019 02:12
Show Gist options
  • Save aalipar13/287d94240ceebd5bc7a569456ca9906a to your computer and use it in GitHub Desktop.
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 = '[email protected]';
$user->name = 'kiminonawa';
$user->save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment