@extends('layout.default') @section('title') {{ $user->username }} {{ __('user.followers') }} - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('nav-tabs') @include('user.buttons.user') @endsection @section('content') @if (auth()->user()->isAllowed($user, 'follower', 'show_follower'))

{{ __('user.followers') }}

@forelse ($followers as $follower) @empty @endforelse
{{ __('user.avatar') }} {{ __('user.user') }} {{ __('common.created_at') }}
{{ $follower->follow->created_at }}
No Followers
{{ $followers->links('partials.pagination') }}
@else

{{ __('user.private-profile') }}

{{ __('user.not-authorized') }}
@endif @endsection