aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pages/bookmarks.blade.php
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/pages/bookmarks.blade.php')
-rw-r--r--resources/views/pages/bookmarks.blade.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/views/pages/bookmarks.blade.php b/resources/views/pages/bookmarks.blade.php
index e7630c7..b0fc464 100644
--- a/resources/views/pages/bookmarks.blade.php
+++ b/resources/views/pages/bookmarks.blade.php
@@ -4,10 +4,10 @@
@section('description', 'This is the personal homepage of floppydisk.')
@section('content')
@foreach ($categories as $category)
- <h1>{{ $category->name }}</h1>
+ <h1>{{ $category['name'] }}</h1>
<ul>
- @foreach ($category->bookmarks as $bookmark)
- <li><a href="{{ $bookmark->url }}">{{ $bookmark->name }}</a> - {{ $bookmark->description }}</li>
+ @foreach ($category['bookmarks'] as $bookmark)
+ <li><a href="{{ $bookmark['url'] }}">{{ $bookmark['name'] }}</a> - {{ $bookmark['description'] }}</li>
@endforeach
</ul>
@endforeach