Last active
August 20, 2019 02:12
-
-
Save aalipar13/287d94240ceebd5bc7a569456ca9906a to your computer and use it in GitHub Desktop.
Laravel - Create User
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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