Hi ,
I just purchased the Metronic Template.
I am using laravel (bit new to Laravel, previously Java Developer)
I am able to modify the menu for sidebar , but unable to modify the Header menu bar menus.
i have tried to make changes to :
resources/views/layout/partials/header-layout
But changes dosen't seem to take any effect.
For Metronic's header menu customization in Laravel, check the config/menu.php file or published vendor assets. Need mobile-friendly UI tips? See GB WhatsApp download for inspiration on compact menu designs.
Hey @faizal
I have tried to change the default layout sidebar to the header
I have followed the all steps you mentioned but I'm facing an error after the changes
InvalidArgumentException
View [partials.theme-mode._main] not found.
\resources\views\layout\partials\header-layout\header\_navbar.blade.php : 44
Hi,
To modify the Header menu bar menus in your project, please follow these steps:
/starterkit/app/Core/Bootstrap/BootstrapDefault.php.$this->initDarkHeaderLayout();.Next, proceed with the following steps:
/starterkit/app/View/Components/DefaultLayout.php.
return view(config('settings.KT_THEME_LAYOUT_DIR').'._default');
_default_header_layout file. Update the line as follows:
return view(config('settings.KT_THEME_LAYOUT_DIR').'. _default_header_layout');
By making these changes, you should be able to modify the Header menu bar menus. Please give it a try and see if it resolves the issue. If you have any further questions or need additional assistance, feel free to ask.
Thanks