26 lines
405 B
PHP
26 lines
405 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class GeneralSettings extends Settings
|
|
{
|
|
public string $brand_name;
|
|
|
|
public ?string $brand_logo;
|
|
|
|
public string $brand_logoHeight;
|
|
|
|
public ?string $site_favicon;
|
|
|
|
public array $site_theme;
|
|
|
|
public bool $search_engine_indexing;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'general';
|
|
}
|
|
}
|