Files
star-cloud/database/factories/System/CompanyFactory.php
sky121113 740eaa30b7
All checks were successful
star-cloud-deploy-demo / deploy-demo (push) Successful in 1m2s
[FEAT] 優化後端帳號權限邏輯、開發商品管理功能及聯絡資訊 UI 改版
2026-03-27 13:43:08 +08:00

25 lines
562 B
PHP

<?php
namespace Database\Factories\System;
use App\Models\System\Company;
use Illuminate\Database\Eloquent\Factories\Factory;
class CompanyFactory extends Factory
{
protected $model = Company::class;
public function definition(): array
{
return [
'name' => $this->faker->company,
'code' => $this->faker->unique()->bothify('COMP###'),
'status' => 1,
'settings' => [
'enable_material_code' => false,
'enable_points' => false,
],
];
}
}