@extends('master/index') @section('content')

{{ t('Users')}}

@foreach($users as $user)

{{ ucfirst($user->fullname) }}

{{ $user->commentsCount }} {{ t('comments') }} · {{ $user->imagesCount }} {{ t('images') }}

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

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

@endforeach @endsection @section('pagination')
{!! $users->appends(Input::except('page'))->render() !!}
@endsection