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