{{ $heading }}

@foreach($users as $user)
{{ $user->name }}

{{ $user->name }} {{ '@'.$user->username }}

@if($user->timeline_id != Auth::user()->timeline_id) @if(!$user->followers->contains(Auth::user()->id))
{{ trans('common.follow') }}
{{ trans('common.following') }}
@else
{{ trans('common.follow') }}
{{ trans('common.following') }}
@endif @endif
@endforeach