@extends('layouts.nova') @section('content')
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 ?? '—' }}

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