diff --git a/resources/views/account/following.blade.php b/resources/views/account/following.blade.php
new file mode 100644
index 00000000..8cb3dbf9
--- /dev/null
+++ b/resources/views/account/following.blade.php
@@ -0,0 +1,96 @@
+@extends('layouts.app')
+
+@section('content')
+
+
+
+
+{{-- --}}
+
+
+
+ @if($notifications->count() > 0)
+ @foreach($notifications as $notification)
+ @php
+ if(!in_array($notification->action, ['like', 'follow'])) {
+ continue;
+ }
+ @endphp
+ -
+ @switch($notification->action)
+
+ @case('like')
+
+
+
+
+ {{$notification->actor->username}}
+
+ {{__('liked a post by')}}
+
+ {{$notification->item->profile->username}}
+
+ {{$notification->created_at->diffForHumans(null, true, true, true)}}
+
+
+ @if($notification->item_id && $notification->item_type == 'App\Status')
+
+ @endif
+
+ @break
+
+ @case('follow')
+
+
+
+
+ {{$notification->actor->username}}
+
+ {{__('started following')}}
+
+ {{$notification->item->username}}
+
+ {{$notification->created_at->diffForHumans(null, true, true, true)}}
+
+ @break
+
+ @endswitch
+
+ @endforeach
+
+
+
+ {{$notifications->links()}}
+
+ @else
+
+
No unread notifications found.
+
+ @endif
+
+
+@endsection
+
+@push('scripts')
+
+@endpush