moving to provider stored in database

This commit is contained in:
2025-04-07 14:38:28 +01:00
parent 6bd12bd6ca
commit b800a9d83a
11 changed files with 100 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Enums;
use App\Enums\Concerns\Arrayable;
enum ProviderType: string
{
use Arrayable;
case HETZNER = 'hetzner';
case DIGITAL_OCEAN = 'digital-ocean';
}