@extends('master') @section('title') Bookmarks « @stop @section('content')
@foreach($bookmarks as $bookmark)
@isset($bookmark->name) {{ $bookmark->name }} @endisset @empty($bookmark->name) {{ $bookmark->url }} @endempty   🔗 @isset($bookmark->content)

{{ $bookmark->content }}

@endisset @isset($bookmark->screenshot) @endisset @if($bookmark->tags_count > 0) @endif
@endforeach
{{ $bookmarks->links() }} @stop