21 lines
388 B
PHP
21 lines
388 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class NetworkSettings extends Settings
|
|
{
|
|
public ?string $ip_address;
|
|
public ?string $subnet_mask;
|
|
public ?string $gateway;
|
|
public ?string $dns_server_1;
|
|
public ?string $dns_server_2;
|
|
public bool $dhcp_enabled;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'network';
|
|
}
|
|
}
|