28 lines
1.3 KiB
PHP
28 lines
1.3 KiB
PHP
@extends('layouts.nova')
|
|
|
|
@section('content')
|
|
<div class="container mx-auto py-8 max-w-3xl">
|
|
<h1 class="text-2xl font-semibold mb-6">People I Follow</h1>
|
|
|
|
@if($following->isEmpty())
|
|
<p class="text-sm text-gray-500">You are not following anyone yet. <a href="{{ route('discover.trending') }}" class="underline">Discover creators</a></p>
|
|
@else
|
|
<div class="space-y-3">
|
|
@foreach($following as $f)
|
|
<a href="{{ $f->profile_url }}" class="flex items-center gap-4 p-3 rounded-lg hover:bg-white/5 transition">
|
|
<img src="{{ $f->avatar_url }}" alt="{{ $f->uname }}" class="w-10 h-10 rounded-full object-cover">
|
|
<div class="flex-1 min-w-0">
|
|
<div class="font-medium truncate">{{ $f->uname }}</div>
|
|
<div class="text-xs text-gray-500">{{ $f->uploads }} uploads · {{ $f->followers_count }} followers · followed {{ \Carbon\Carbon::parse($f->followed_at)->diffForHumans() }}</div>
|
|
</div>
|
|
</a>
|
|
@endforeach
|
|
</div>
|
|
|
|
<div class="mt-6">
|
|
{{ $following->links() }}
|
|
</div>
|
|
@endif
|
|
</div>
|
|
@endsection
|