@extends('layout.default')
@section('title')
{{ $user->username }} {{ __('user.followers') }} - {{ config('other.title') }}
@endsection
@section('breadcrumbs')
{{ $user->username }}
{{ __('user.followers') }}
@endsection
@section('nav-tabs')
@include('user.buttons.user')
@endsection
@section('content')
@if (auth()->user()->isAllowed($user, 'follower', 'show_follower'))
{{ __('user.followers') }}
{{ __('user.avatar') }} |
{{ __('user.user') }} |
{{ __('common.created_at') }} |
@forelse ($followers as $follower)
|
|
{{ $follower->follow->created_at }} |
@empty
No Followers |
@endforelse
{{ $followers->links('partials.pagination') }}
@else
{{ __('user.private-profile') }}
{{ __('user.not-authorized') }}
@endif
@endsection