TokensFactory.php
740 Bytes
<?php
use Faker\Generator as Faker;
use Illuminate\Support\Str;
/*
|--------------------------------------------------------------------------
| 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(App\Models\Tokens::class, function (Faker $faker) {
return [
'token' => $faker->uuid,
'login' => $faker->userName,
'api' => 'yd',
'type' => 'goal',
'created_by' => 1,
'limit' => $faker->randomDigit,
];
});