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

{{ t('Users')}}

@foreach($users as $user)

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

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

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

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

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