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