Laravel change dark sidebar to light sidebar in light theme
Please help me to change dark sidebar to light sidebar in light theme of Laravel?
Thanks
Replies (3)
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(); Uncomment the line $this->initLightSidebarLayout(); by removing the // at the beginning.
$this->initLightSidebarLayout(); Comment out the line $this->initDarkSidebarLayout(); by adding // at the beginning.
// $this->initDarkSidebarLayout(); Save the changes to the file.