@php $fontawesome = json_decode($fontawesome); @endphp
@if ( $menu_items == 'custom' )
@endif
@if ( $type == 'link' )
@endif @if ( $type == 'button' )
@endif
@php function get_menu($menus, $class = 'dd-list') { $html = '
    '; foreach($menus as $key => $value) { $html .= '
  1. '.$value['text'].' '.$value['url'].'
    '; if( !empty($value['children']) ) { $html .= get_menu($value['children'],'children'); } $html .'
  2. '; } $html .= '
'; return $html; } echo get_menu($menus); @endphp