@extends('layouts.default') @section('title', 'Bookmarks') @section('description', 'This is the personal homepage of floppydisk.') @section('content') @php $categories = DB::select(' SELECT id, name FROM bookmark__categories ORDER BY priority ASC '); @endphp @foreach ($categories as $category) @php $sites = DB::select( ' SELECT name, url, description FROM bookmark__sites WHERE category_id = ? ORDER BY priority ASC ', [$category->id], ); @endphp @foreach ($sites as $site) @endforeach

{{ $category->name }}


{{ $site->name }} - {{ $site->description }}

@endforeach @stop