2FAuth/database/factories/TwoFAccountFactory.php
2019-06-10 23:42:13 +02:00

27 lines
804 B
PHP

<?php
/* @var $factory \Illuminate\Database\Eloquent\Factory */
use App\TwoFAccount;
use Faker\Generator as Faker;
/*
|--------------------------------------------------------------------------
| Model Factories
|--------------------------------------------------------------------------
|
| This directory should contain each of the model factory definitions for
| your application. Factories provide a convenient way to generate new
| model instances for testing / seeding your application's database.
|
*/
$factory->define(TwoFAccount::class, function (Faker $faker) {
return [
'name' => $faker->unique()->domainName,
'email' => $faker->safeEmail,
'uri' => 'otpauth://totp/' . $faker->email . '?secret=' . $faker->regexify('[A-Z0-9]{16}') . '&issuer=test',
];
});