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

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

@if (auth()->id() === $user->id) @endif @forelse ($followings as $following) @if (auth()->id() === $user->id) @endif @empty @endforelse
{{ __('user.avatar') }} {{ __('user.user') }} {{ __('common.created_at') }}{{ __('common.actions') }}
{{ $following->follow->created_at }}
  • @csrf @method('DELETE')
  • Not following
    {{ $followings->links('partials.pagination') }}
    @else

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

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