Hi, i'm new here just wanna ask how to remove sidebar in laravel? i just need the navbar, when i try the builder in HTML it works, but i dont know how to implement in laravel, any tutorial?
Thank you Victor, for the answer.
Pascal, If you have any more questions or need further assistance, feel free to ask.
Thanks
In app\Core\Bootstrap\BootstrapDefault.php
uncomment option 3, header layout and comment option 2.
public function init()
{
// 1) Light sidebar layout (default.html)
// $this->initLightSidebarLayout();
// 2) Dark sidebar layout (default.html)
//$this->initDarkSidebarLayout();
// 3) Dark header layout (default_header_layout.html)
$this->initDarkHeaderLayout();
// 4) Light header layout (default_header_layout.html)
//$this->initLightHeaderLayout();
# Init global assets for default layout
$this->initAssets();
}
Hi, thankyou for the answer