Please help me to change dark sidebar to light sidebar in light theme of Laravel?
Thanks
You're welcome! If you have any more questions or if there's anything else I can assist you with, feel free to ask.
If you want to change the dark sidebar to a light sidebar in the light theme of Laravel using Metronic, you can follow these steps:
Open the file
/metronic_laravel_v8.2.1/starterkit/app/Core/Bootstrap/BootstrapDefault.php in your code editor.
Look for the following lines:
// Uncomment the line below to use the light sidebar layout
// $this->initLightSidebarLayout();
// Uncomment the line below to use the dark sidebar layout
$this->initDarkSidebarLayout();
$this->initLightSidebarLayout();
// $this->initDarkSidebarLayout();
Wonderful! Thank you so much!