new 2FAccounts seeder

This commit is contained in:
Bubka 2019-06-24 00:22:37 +02:00
parent 8b5f5223c0
commit dc64aa55ec

View File

@ -0,0 +1,47 @@
<?php
use App\TwoFAccount;
use Illuminate\Database\Seeder;
use Illuminate\Foundation\Testing\WithFaker;
class TwoFAccountsTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$faker = \Faker\Factory::create();
TwoFAccount::create([
'name' => $faker->unique()->domainName,
'email' => $faker->email,
'uri' => 'otpauth://totp/test@test.com?secret=A4GRFTVVRBGY7UIW&issuer=test',
'icon' => 'https://fakeimg.pl/64x64/'
]);
TwoFAccount::create([
'name' => $faker->unique()->domainName,
'email' => $faker->email,
'uri' => 'otpauth://totp/test@test.com?secret=A4GRFHYVRBGY7UIW&issuer=test',
'icon' => 'https://fakeimg.pl/64x64/'
]);
TwoFAccount::create([
'name' => $faker->unique()->domainName,
'email' => $faker->email,
'uri' => 'otpauth://totp/test@test.com?secret=A4GRFHZVRBGY7UIW&issuer=test',
'icon' => 'https://fakeimg.pl/64x64/'
]);
TwoFAccount::create([
'name' => $faker->unique()->domainName,
'email' => $faker->email,
'uri' => 'otpauth://totp/test@test.com?secret=A4GRFHVIRBGY7UIW&issuer=test',
'icon' => 'https://fakeimg.pl/64x64/'
]);
TwoFAccount::create([
'name' => $faker->unique()->domainName,
'email' => $faker->email,
'uri' => 'otpauth://totp/test@test.com?secret=A4GRFHVVOBGY7UIW&issuer=test',
'icon' => 'https://fakeimg.pl/64x64/'
]);
}
}