artkonekt / appshell

AppShell is an Laravel Application boilerplate with UI, ACL, Users & Customers
https://konekt.dev/appshell
MIT License
80 stars 10 forks source link

How to customize or override views? #10

Closed tekord closed 5 years ago

tekord commented 5 years ago

Is it possible to customize or override views? Documentations provides info only for asset customization.

fulopattila122 commented 5 years ago

Yes it's possible. Actually it's a Laravel feature: https://laravel.com/docs/5.7/packages#views (scroll down to "Overriding Package Views").

It means that you can customize any appshell view if you put your customized version of the blade file(s) within your applications resources/views/vendor/appshell folder (has to be same folder/filename as the original). Laravel will pick it up from there instead of the original package version.

tekord commented 5 years ago

Thank you!