29 lines
1.1 KiB
PHP
29 lines
1.1 KiB
PHP
@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
|
|
|