Last active
August 29, 2015 14:25
-
-
Save andreferraro/00b13509f7840d5562fe to your computer and use it in GitHub Desktop.
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 | |
use Illuminate\Database\Seeder; | |
class UserTableSeeder extends Seeder | |
{ | |
/** | |
* Run the database seeds. | |
* | |
* @return void | |
*/ | |
public function run() | |
{ | |
factory(App\User::class)->create([ | |
'name' => 'Jonh', | |
'email' => '[email protected]', | |
'role' => 'admin', | |
'password' => bcrypt('123mudar') | |
]); | |
factory(App\User::class, 9)->create(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment