diff options
author | Frankie B <git@diskfloppy.me> | 2023-06-14 23:35:47 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-06-14 23:35:47 +0100 |
commit | c7a1b41a19c9091c9d09a70d7003eaa28813eee1 (patch) | |
tree | 4aed6cc46556dd1d32bf8394f7b8f4bcb4255355 /resources/views/pages/bookmarks.blade.php | |
parent | e5ac640025d24b14e3a24632a768c789b6085a7f (diff) |
fix: make configs serializable
Diffstat (limited to 'resources/views/pages/bookmarks.blade.php')
-rw-r--r-- | resources/views/pages/bookmarks.blade.php | 6 |
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 |