@extends('index') @section('content') @include('profile.nav')
@if (count($profile->followers))
@include('commons.user', ['users' => $profile->followers, 'element' => 'profile'])
@else
@if (auth()->check() && auth()->user()->username == $profile->username)

{{ __('web.EMPTY_FOLLOWERS_OWNER') }}

{{ __('web.EMPTY_FOLLOWERS_DESC_OWNER') }}

@else

{{ __('web.EMPTY_FOLLOWERS', ['name' => $profile->name]) }}

{{ __('web.EMPTY_COLLECTION_DESC') }}

@endif
@endif
@endsection