aboutsummaryrefslogtreecommitdiff
path: root/resources/views/bookmarks.blade.php
blob: 739c4c2f9b330493ded4988ba20f950d6c2a49cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<x-layout>
    <x-slot:title>Bookmarks</x-slot:title>
    @foreach($categories as $category)
        <div class="info-section">
            <h2>{{ $category->name }}</h2>
            <hr>
            <ul>
            @foreach($category->sites as $site)
                    <li><a href="{{ $site->url }}">{{ $site->name }}</a> - {{ $site->description }}</li>
            @endforeach
            </ul>
        </div>
    @endforeach
</x-layout>