@extends('layouts.nova') @section('content')

Dashboard

People I Follow

Creators and members you follow, with quick stats and recent follow time.

Discover creators
@if($following->isEmpty())

You are not following anyone yet.

Start following creators
@else @php $firstFollow = $following->getCollection()->first(); $latestFollowedAt = $firstFollow && !empty($firstFollow->followed_at) ? \Carbon\Carbon::parse($firstFollow->followed_at)->diffForHumans() : null; @endphp

Following

{{ number_format($following->total()) }}

On this page

{{ number_format($following->count()) }}

Last followed

{{ $latestFollowedAt ?? '—' }}

Creator Followed
{{ $following->links() }}
@endif
@endsection