@php function get_categories($categories, $class = 'dd-list') { $html = '
    '; foreach($categories as $key => $value) { $html .= '
  1. '.$value['title'].'

    '.$value['description'].'
    '; $html .'
  2. '; } $html .= '
'; return $html; } echo get_categories($categories); @endphp