From 4fc11d732933398bd7597e1484ef2deea182ca42 Mon Sep 17 00:00:00 2001 From: w33b Date: Sat, 18 Apr 2026 15:47:06 +0200 Subject: [PATCH] Redo notification list --- .../views/profile/notifications.blade.php | 115 +++++++++--------- 1 file changed, 57 insertions(+), 58 deletions(-) diff --git a/resources/views/profile/notifications.blade.php b/resources/views/profile/notifications.blade.php index 5dfdd39..f902a04 100644 --- a/resources/views/profile/notifications.blade.php +++ b/resources/views/profile/notifications.blade.php @@ -2,66 +2,65 @@ @include('partials.head') -
- @include('layouts.navigation') - -
- @include('user.partials.background') -
-
- @include('profile.partials.sidebar') -
-
- - - - - - - - - - @forelse($notifications as $notification) - - - - - - @empty - - - - - - @endforelse - -
TypeMessageAction
- {{ $notification->data['type'] ?? '' }} - - {{ $notification->data['message'] ?? '' }} - - - Open - -
- @csrf - @method('delete') - - -
-
- - No entries (╥﹏╥) - -
+
+ @include('layouts.navigation') + +
+ @include('user.partials.background') +
+
+ @include('profile.partials.sidebar') +
+ + @forelse($notifications as $notification) +
+ + +
+
+ + {{ $notification->data['type'] ?? 'Notification' }} + +
+ +

+ {{ $notification->data['message'] ?? '' }} +

+
+ + +
+ + Open + + +
+ @csrf + @method('delete') + + + +
+
+
-
+ @empty +
+

No notifications

+

(╥﹏╥)

+
+ @endforelse
-
- @include('layouts.footer') -
+
+
+ @include('layouts.footer') +