ctrlpanel/app/Settings/ServerSettings.php

21 lines
333 B
PHP
Raw Normal View History

2023-02-02 15:45:17 +00:00
<?php
2023-02-06 20:16:54 +00:00
namespace App\Settings;
2023-02-02 15:45:17 +00:00
use Spatie\LaravelSettings\Settings;
class ServerSettings extends Settings
{
public int $allocation_limit;
public bool $creation_enabled;
public bool $enable_upgrade;
2023-02-04 16:40:42 +00:00
public bool $charge_first_hour;
2023-02-02 15:45:17 +00:00
public static function group(): string
{
return 'server';
}
}