{{$user->name}} @if(GenericHelper::isUserVerified($user)) @include('elements.icon',['icon'=>'verified','centered'=>true,'classes'=>'ml-1 text-primary']) @endif @if($hasActiveStream)
@endif
@{{$user->username}} @if(getSetting('profiles.show_online_users_indicator')) @if(GenericHelper::isUserOnline($user->id)) {{__("Available now")}} @else @if(getSetting('profiles.record_users_last_activity_time') && $user->last_active_at) {{__("Last seen")}} {{$user->last_active_for_humans}} @else {{__("Online recently")}} @endif @endif @endif
{{ short_number(GenericHelper::getTotalLikesForUser($user->id)) }}
{{ucfirst(trans_choice('likes', GenericHelper::getTotalLikesForUser($user->id)))}}
{{ short_number(count(ListsHelper::getUserFollowers($user->id))) }}
{{ucfirst(trans_choice('followers', count(ListsHelper::getUserFollowers($user->id))))}}
@if($user->bio) @if(getSetting('profiles.allow_profile_bio_markdown')) {!! GenericHelper::parseProfileMarkdownBio($user->bio) !!} @else {!!GenericHelper::parseSafeHTML($user->bio)!!} @endif @else {{__('No description available.')}} @endif
@if($user->bio && !getSetting('profiles.disable_profile_bio_excerpt')) {{__('More info')}} {{__('Show less')}} @endif
@if(getSetting('profiles.social_links_enabled'))
@include('elements.profile.profile-social-links', [ 'items' => $profileSocialLinks ])
@endif @if(!empty($storiesEnabled) && !empty($allowHighlights) && !empty($hasHighlights))
{{ __('Highlights') }}
{{-- Skeleton only when highlights exist --}}
@include('elements.preloading.stories-swiper-skeleton', ['limit' => 4])
@endif
@include('elements.icon',['icon'=>'calendar-clear-outline','centered'=>false,'classes'=>'mr-1'])
{{ucfirst($user->created_at->translatedFormat('F d'))}}
@if($user->location)
@include('elements.icon',['icon'=>'location-outline','centered'=>false,'classes'=>'mr-1'])
{{$user->location}}
@endif @if(!getSetting('profiles.disable_website_link_on_profile')) @if($user->website)
@include('elements.icon',['icon'=>'globe-outline','centered'=>false,'classes'=>'mr-1'])
@endif @endif @if(getSetting('profiles.allow_gender_pronouns')) @if($user->gender_pronoun)
@include('elements.icon',['icon'=>'male-female-outline','centered'=>false,'classes'=>'mr-1'])
{{$user->gender_pronoun}}
@endif @endif