How to Extend/Change features of an existing package from another package?
-
Is there any way where I can extend/change some features of an existing package from another package?
Like:
- Add brand to products table.
- Add category type to categories table.
- Add category to slider
-
Hello,
You can create a separate package for it & can override model.
Link are -https://devdocs.bagisto.com/override-core-model.html & https://devdocs.bagisto.com/create_package.html#how-to-create-package.In your package, add desired column in model & create migration for it and use your model instead of core.
To ovveride layout, you can create your own view in laravel's default view folder.
Check laravel's default view folder (resources -> views), you will find a folder name as vendor, In this vendor folder create your own view but make sure that it consist the same directory structure as package have.For shop, create a folder name shop in this folder create a same directory of view as shop package consist.
Example - like I have to override master file , then in shop folder i will create layouts folder & inside this folder, create file name master.blade.php & write own code here.Thanks
Rahul Shukla -
@rahul How to Extend/Change features of an existing package from another package?