This commit is contained in:
2026-02-21 19:26:48 +01:00
parent 7648e7d426
commit e4e0bdf8f1
53 changed files with 747 additions and 176 deletions

View File

@@ -0,0 +1,17 @@
@extends('layouts.nova')
@section('content')
<div class="container mx-auto py-8">
<h1 class="text-2xl font-semibold mb-4">Following</h1>
@if(empty($following))
<p class="text-sm text-gray-500">You are not following anyone yet.</p>
@else
<ul class="space-y-2">
@foreach($following as $f)
<li>{{ $f }}</li>
@endforeach
</ul>
@endif
</div>
@endsection