engelsystem/db/factories/User/SettingsFactory.php

28 lines
727 B
PHP
Raw Normal View History

2021-06-29 00:27:57 +02:00
<?php
namespace Database\Factories\Engelsystem\Models\User;
use Engelsystem\Models\User\Settings;
use Illuminate\Database\Eloquent\Factories\Factory;
class SettingsFactory extends Factory
{
/** @var string */
protected $model = Settings::class;
/**
* @return array
*/
public function definition()
{
return [
'language' => $this->faker->locale(),
'theme' => $this->faker->numberBetween(1, 20),
'email_human' => $this->faker->boolean(),
'email_goody' => $this->faker->boolean(),
2021-06-29 00:27:57 +02:00
'email_shiftinfo' => $this->faker->boolean(),
'email_news' => $this->faker->boolean(),
];
}
}