*/ class StorageProviderFactory extends Factory { public function definition(): array { return [ 'profile' => $this->faker->word(), 'provider' => $this->faker->randomElement(config('core.storage_providers')), 'credentials' => [ 'token' => 'test-token', ], 'user_id' => User::factory(), ]; } }