30 lines
459 B
PHP
30 lines
459 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class GeneralSettings extends Settings
|
|
{
|
|
public string $site_name;
|
|
|
|
public string $site_description;
|
|
|
|
public string $site_address;
|
|
|
|
public string $site_phone;
|
|
|
|
public ?string $logo_light;
|
|
|
|
public ?string $logo_dark;
|
|
|
|
public ?string $icon_light;
|
|
|
|
public ?string $icon_dark;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'general';
|
|
}
|
|
}
|