@extends('layout.default') @section('title') {{ $user->username }} {{ __('user.following') }} - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('nav-tabs') @include('user.buttons.user') @endsection @section('content') @if (auth()->id() === $user->id || auth()->user()->group->is_modo)

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

@forelse ($followings as $following) @empty @endforelse
{{ __('user.avatar') }} {{ __('user.user') }} {{ __('common.created_at') }}
{{ $following->follow->created_at }}
Not following
{{ $followings->links('partials.pagination') }}
@else

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

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