@extends('master/index') @section('custom') @include('user/rightsidebar')

{{ t('Users')}}

@foreach($user->followers as $follower)

{{ $follower->user->fullname }}

{{ $follower->user->comments->count() }} {{ t('comments') }} · {{ $follower->user->images->count() }} {{ t('images') }}

{{ str_limit($follower->user->about_me,50) }}

@foreach($follower->user->latestImages->take(3) as $image)
@endforeach

@endforeach
@endsection @section('sidebar') @endsection