@php
include base_path().'/wave/docs/load.php';
@endphp
{{ $title }}
{{-- sidebar --}}
Wavedocs
@foreach($menu_items as $item)
{{-- if the current page is in this menu we want to have this drawer open --}}
@php $isOpen = false; @endphp
@foreach($item->sections as $index => $section)
@if(Request::getRequestUri() && Request::getRequestUri() == $section->url)
@php $isOpen = true; @endphp
@endif
@endforeach