> For the complete documentation index, see [llms.txt](https://lorvent.gitbook.io/clear/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lorvent.gitbook.io/clear/laravel-version/changing-layout.md).

# 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
