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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user