{{-- 즐겨찾기 섹션 --}} @if($bookmarks->isNotEmpty())
즐겨찾기 ({{ $bookmarks->count() }})
@foreach($bookmarks as $bookmark)
{{ $bookmark->method }} {{ $bookmark->display_name ?? $bookmark->endpoint }}
@endforeach
@endif {{-- 태그별 엔드포인트 그룹 --}} @forelse($endpointsByTag as $tag => $endpoints)
{{ $tag }} {{ $endpoints->count() }}
@foreach($endpoints as $endpoint) @php $isBookmarked = $bookmarks->where('endpoint', $endpoint['path'])->where('method', $endpoint['method'])->isNotEmpty(); @endphp
{{ $endpoint['method'] }} {{ $endpoint['path'] }}
@endforeach
@empty

검색 결과가 없습니다

@endforelse