File "ExchangeRateProviderFactory-20250316120205.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/database/factories/ExchangeRateProviderFactory-20250316120205.php
File size: 619 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Database\Factories;
use App\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.
*/
public function definition(): array
{
return [
'driver' => $this->faker->word(),
'key' => str_random(10),
'active' => $this->faker->randomElement([true, false]),
];
}
}