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

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

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

@else

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

@endif
@endif
@endsection