aboutsummaryrefslogtreecommitdiff
path: root/resources/views/bookmarks.blade.php
blob: c8d0e1160e9d0983069d161eca5f3eab3da3f8c4 (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="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>