*/ class AssetGroupFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => fake()->name(), 'sequence' => fake()->randomNumber(1, 9), 'company_id' => Auth::user()->company_id, ]; } }