drop dependency to bensampo/laravel-enum (#120)

This commit is contained in:
Saeed Vaziry
2024-03-17 12:26:48 +01:00
committed by GitHub
parent b07ae470f9
commit 839e7f496c
35 changed files with 59 additions and 392 deletions

View File

@ -14,7 +14,7 @@ public function definition(): array
{
return [
'profile' => $this->faker->word(),
'provider' => $this->faker->randomElement(\App\Enums\ServerProvider::getValues()),
'provider' => $this->faker->randomElement(config('core.server_providers')),
'credentials' => [],
'connected' => 1,
'user_id' => User::factory(),