first
This commit is contained in:
25
app/Settings/GeneralSettings.php
Normal file
25
app/Settings/GeneralSettings.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?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';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user