ctrlpanel/app/Settings/ServerSettings.php

19 lines
296 B
PHP
Raw Normal View History

2023-02-02 15:45:17 +00:00
<?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 static function group(): string
{
return 'server';
}
}