for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Larafolio\database\seeds;
use Illuminate\Database\Seeder;
class UsersTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
\DB::table('users')->insert([
'name' => 'admin',
'email' => '[email protected]',
'password' => bcrypt('password'),
]);
}