Super Sale Limited Time 50% OFF for All-Access Plans
Save 50% Now

Laravel layout


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?


Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (3)


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


Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(
Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(