@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)

{{ $category->name }}

@php $sites = DB::select(' SELECT name, url, description FROM bookmark_sites WHERE category_id = ? ORDER BY priority ASC ', array($category->id)); @endphp @endforeach @stop