@extends('settings.template') @section('section')

{{__('settings.relationships')}}


{{__('settings.relationships.followers')}} {{__('settings.relationships.following')}} {{__('settings.relationships.hashtags')}}

@if(empty($data))

You are not {{$mode == 'hashtags' ? 'following any hashtags.' : ($mode == 'following' ? 'following anyone.' : 'followed by anyone.')}}

@else
@if($mode == 'hashtags') {{-- --}} @foreach($data as $hashtag) @endforeach @else {{-- --}} @foreach($data as $follower) {{-- --}} @if($mode == 'following') @else @endif @endforeach @endif
{{__('settings.relationships.hashtag')}} {{__('settings.relationships.action')}}

#{{$hashtag->hashtag->name}}

Unfollow
{{__('settings.relationships.username')}} {{__('settings.relationship.action')}}

{{$follower->username}}

Unfollow {{__('settings.relationships.mute')}} {{__('settings.relationships.block')}}
{{$data->appends(['mode' => $mode])->links()}}
@endif @endsection @push('styles') @endpush @push('scripts') @endpush