@if (empty(trim($search)))

{{ __('People') }}

@else

{{ __('People Results for') }} {{ $search }}

@endif
@if (count($users) > 0) {{ __(':from - :to of :total', ['from' => $users->firstItem(), 'to' => $users->lastItem(), 'total' => $users->total()]) }}
@foreach ($users as $user)
@if ($user->isOnline('website'))
@endif
{{ $user->username }} @if ($user->hasChangedUsername()) {{ $user->mostRecentUsername() }} @endif @if ($user->isOnline('website')) {{ __('last seen recently') }} @else {{ __('last seen :time ago', ['time' => seconds2human($user->lastSeenRelative('website'), true)]) }} @endif
@if (Auth::user()->id != $user->id) @else {{ __('This is you') }} @endif
@endforeach
{{ $users->links() }}
@else

{{ __('No results found') }}

{{ __('There were no matches available for your query') }}

@endif