52 lines
915 B
PHP
52 lines
915 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class HomeSettings extends Settings
|
|
{
|
|
public string $bg_video;
|
|
|
|
public string $hero_badge_text;
|
|
|
|
public string $hero_header;
|
|
|
|
public string $hero_sub_header;
|
|
|
|
public string $hero_link_button_url;
|
|
|
|
public string $hero_link_button_text;
|
|
|
|
public string $about_subtitle;
|
|
|
|
public string $about_header;
|
|
|
|
public string $about_paragraph;
|
|
|
|
public int $about_projects_number;
|
|
|
|
public string $about_projects_text;
|
|
|
|
public int $about_members_number;
|
|
|
|
public string $about_members_text;
|
|
|
|
public int $about_reviews_number;
|
|
|
|
public string $about_reviews_text;
|
|
|
|
public string $about_button_text;
|
|
|
|
public string $about_button_url;
|
|
|
|
public string $about_image_one;
|
|
|
|
public string $about_image_two;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'cms_homepage';
|
|
}
|
|
}
|