3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-04-10 01:38:20 +00:00
Files
snipe-it/database/factories/SettingFactory.php
2026-03-12 11:47:04 +00:00

42 lines
1.0 KiB
PHP

<?php
namespace Database\Factories;
use App\Models\Setting;
use Illuminate\Database\Eloquent\Factories\Factory;
class SettingFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Setting::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'per_page' => 20,
'site_name' => $this->faker->sentence(),
'auto_increment_assets' => false,
'alert_email' => $this->faker->safeEmail(),
'alerts_enabled' => true,
'brand' => 1,
'default_currency' => $this->faker->currencyCode(),
'locale' => 'en-US',
'pwd_secure_min' => 10, // Match web setup
'email_domain' => 'example.org',
'header_color' => '#3c8dbc',
'link_dark_color' => '#5fa4cc',
'link_light_color' => '#296282;',
'nav_link_color' => '#FFFFFF',
];
}
}