*/ class BrandFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'code' => 'BRAND' . $this->faker->randomNumber(4), 'name' => $this->faker->company, 'remark' => $this->faker->sentence(), ]; } }