mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
31 lines
641 B
PHP
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]),
|
|
];
|
|
}
|
|
}
|