12345678910111213141516171819202122232425262728 |
- @foreach($groupedEndpoints as $group)
- <h1 id="{!! Str::slug($group['name']) !!}"
- class="sl-text-5xl sl-leading-tight sl-font-prose sl-text-heading"
- >
- {!! $group['name'] !!}
- </h1>
- {!! Parsedown::instance()->text($group['description']) !!}
- @foreach($group['subgroups'] as $subgroupName => $subgroup)
- @if($subgroupName !== "")
- <h2 id="{!! Str::slug($group['name']) !!}-{!! Str::slug($subgroupName) !!}"
- class="sl-text-3xl sl-leading-tight sl-font-prose sl-text-heading sl-mt-5 sl-mb-3"
- >
- {{ $subgroupName }}
- </h2>
- @php($subgroupDescription = collect($subgroup)->first(fn ($e) => $e->metadata->subgroupDescription)?->metadata?->subgroupDescription)
- @if($subgroupDescription)
- {!! Parsedown::instance()->text($subgroupDescription) !!}
- @endif
- <br>
- @endif
- @foreach($subgroup as $endpoint)
- @include("scribe::themes.elements.endpoint")
- @endforeach
- @endforeach
- @endforeach
|