ctrlpanel/app/Settings/ServerSettings.php
2023-02-24 14:02:28 +01:00

21 lines
333 B
PHP

<?php
namespace App\Settings;
use Spatie\LaravelSettings\Settings;
class ServerSettings extends Settings
{
public int $allocation_limit;
public bool $creation_enabled;
public bool $enable_upgrade;
public bool $charge_first_hour;
public static function group(): string
{
return 'server';
}
}