groups.blade.php 306 B

12345678910
  1. @foreach($groupedEndpoints as $group)
  2. <h1 id="{!! Str::slug($group['name']) !!}">{!! $group['name'] !!}</h1>
  3. {!! Parsedown::instance()->text($group['description']) !!}
  4. @foreach($group['endpoints'] as $endpoint)
  5. @include("scribe::themes.default.endpoint")
  6. @endforeach
  7. @endforeach