Files
crater/database/factories/ExchangeRateProviderFactory.php
Mohit Panjwani 082d5cacf2 v5.0.0 update
2021-11-30 18:58:19 +05:30

31 lines
641 B
PHP

<?php
namespace Database\Factories;
use Crater\Models\ExchangeRateProvider;
use Illuminate\Database\Eloquent\Factories\Factory;
class ExchangeRateProviderFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = ExchangeRateProvider::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'driver' => $this->faker->word,
'key' => str_random(10),
'active' => $this->faker->randomElement([true, false]),
];
}
}