2024-06-11 17:02:01 +00:00
|
|
|
<x-layout>
|
|
|
|
<x-slot:title>Bookmarks</x-slot:title>
|
|
|
|
@foreach($categories as $category)
|
2024-07-12 22:51:50 +00:00
|
|
|
<div class="info-section">
|
|
|
|
<h2>{{ $category->name }}</h2>
|
|
|
|
<hr>
|
|
|
|
<ul>
|
2024-06-11 17:02:01 +00:00
|
|
|
@foreach($category->sites as $site)
|
2024-07-12 22:51:50 +00:00
|
|
|
<li><a href="{{ $site->url }}">{{ $site->name }}</a> - {{ $site->description }}</li>
|
2024-06-11 17:02:01 +00:00
|
|
|
@endforeach
|
2024-07-12 22:51:50 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2024-06-11 17:02:01 +00:00
|
|
|
@endforeach
|
|
|
|
</x-layout>
|