# Changing Layouts

To change any layout you just go through your file and in that you find the code

```
@extends('layouts/defalut')
```

Modify the above line as

```
@extends('layouts.menubarfold')
```

or

```
@extends('layouts.mini_sidebar')
```

or

```
@extends('layouts.layout_movable_header'
```

or

```
@extends('layouts.layout_fixed')
```

or

```
@extends('layouts.layout_boxed_fixed_header')
```

or

```
@extends('layouts.horizontal_menu')
```

or

```
@extends('layouts.boxed_movable_header')
```

**Note:** There are different styles of header and menu layout files are available.

* Default Layout
* Menubarfold Layout
* Mini Sidebar Layout
* Movable Header Layout
* Fixed Layout
* Boxed and Fixed Header Layout
* Horizontal Menu Layout
* Boxed Movable Header Layout


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://lorvent.gitbook.io/clear/laravel-version/changing-layout.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
