23 lines
399 B
PHP
23 lines
399 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class SolutionSettings extends Settings
|
|
{
|
|
public string $solutions_subtitle;
|
|
|
|
public string $solutions_header;
|
|
|
|
public string $solutions_button_text;
|
|
|
|
public string $solutions_button_url;
|
|
|
|
public array $solution_items;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'cms_solutions';
|
|
}
|
|
}
|