@extends('layout.default')
@section('title')
{{ $user->username }} {{ __('user.following') }} - {{ config('other.title') }}
@endsection
@section('breadcrumbs')
{{ $user->username }}
{{ __('user.following') }}
@endsection
@section('nav-tabs')
@include('user.buttons.user')
@endsection
@section('content')
@if (auth()->id() === $user->id || auth()->user()->group->is_modo)
{{ __('user.following') }}
{{ __('user.avatar') }} |
{{ __('user.user') }} |
{{ __('common.created_at') }} |
@forelse ($followings as $following)
|
|
{{ $following->follow->created_at }} |
@empty
Not following |
@endforelse
{{ $followings->links('partials.pagination') }}
@else
{{ __('user.private-profile') }}
{{ __('user.not-authorized') }}
@endif
@endsection