Add Landing Page Section and Update Product Schema: Introduced a new LandingPageSection class to manage the layout and fields for the product landing page. Updated the ProductForm to include this new section, enhancing the product management interface. Added migration for landing_page_data in the products table and implemented localization for new fields in English and Turkish language files. Created a new landing Blade view to render the landing page dynamically, improving user experience and modularity.

This commit is contained in:
Ümit Tunç
2026-01-02 20:58:18 +03:00
parent 89eb9f5c4e
commit 97092dd793
10 changed files with 720 additions and 13 deletions
+2
View File
@@ -21,6 +21,7 @@ class Product extends Model
'view_template',
'sort_order',
'is_active',
'landing_page_data',
];
protected $translatable = [
@@ -32,6 +33,7 @@ class Product extends Model
'is_active' => 'boolean',
'title' => 'array',
'content' => 'array',
'landing_page_data' => 'array',
];
public static function boot()