@yield('content')
@include('themes.basic.profile.includes.sidebar')
@if (request()->routeIs('profile.index') && $user->total_followers > 0 && $followers->count() > 0)
{{ translate('Followers (:count)', ['count' => numberFormat($user->total_followers)]) }}
@foreach ($followers as $follower)
@php
$follower = $follower->follower;
@endphp
@endforeach
@endif