Add About Section to HomePageSettings and update HomePageController to include brand data. Modify HomeSettings to store new about section fields and update the homepage view to display these settings.

This commit is contained in:
2025-07-28 13:08:26 +05:00
parent d0985a71d5
commit b405cad6fe
8 changed files with 158 additions and 26 deletions

View File

@@ -6,11 +6,25 @@ return new class extends SettingsMigration
{
public function up(): void
{
$this->migrator->add('cms_homepage.bg_video', '/web/assets/video/banner.mp4');
$this->migrator->add('cms_homepage.bg_video', 'http://127.0.0.1:8000/web/assets/video/banner.mp4');
$this->migrator->add('cms_homepage.hero_badge_text', 'Expert Solutions');
$this->migrator->add('cms_homepage.hero_header', 'Shaping Future');
$this->migrator->add('cms_homepage.hero_sub_header', 'Architecture');
$this->migrator->add('cms_homepage.hero_link_button_url', 'http://gujurly.com');
$this->migrator->add('cms_homepage.hero_link_button_text', 'Start today');
$this->migrator->add('cms_homepage.about_subtitle', 'About Our Company');
$this->migrator->add('cms_homepage.about_header', 'Leading Construction Innovation With Digital Consulting');
$this->migrator->add('cms_homepage.about_paragraph', 'We focus on optimizing efficiency, managing risks, and delivering innovative solutions tailored to meet unique project needs and enhance productivity.');
$this->migrator->add('cms_homepage.about_projects_number', 678);
$this->migrator->add('cms_homepage.about_projects_text', 'Complete Projects');
$this->migrator->add('cms_homepage.about_members_number', 120);
$this->migrator->add('cms_homepage.about_members_text', 'Team Members');
$this->migrator->add('cms_homepage.about_reviews_number', 635);
$this->migrator->add('cms_homepage.about_reviews_text', 'Client Reviews');
$this->migrator->add('cms_homepage.about_button_text', 'Our Story');
$this->migrator->add('cms_homepage.about_button_url', 'http://gujurly.com');
$this->migrator->add('cms_homepage.about_image_one', 'http://127.0.0.1:8000/web/assets/img/about/about-5.jpg');
$this->migrator->add('cms_homepage.about_image_two', 'http://127.0.0.1:8000/web/assets/img/about/about-6.jpg');
}
};